1 This folder is to support the trbnet commands (trbcmd, trbflash, etc.) with
2 the zsh autocompletion.
4 The autocompletion files are located in the "completion" folder. The files can
5 be edited to extend the autocompletion functionality. The following lines
6 should be copied to the .zshrc file:
9 ###########################################################
11 ## add custom completion scripts
12 fpath=(~/trbsoft/trbnettools/zsh/completion $fpath)
13 # compsys initialization
19 zstyle ':completion:*' special-dirs true
21 # show completion menu when number of options is at least 2
22 zstyle ':completion:*' menu select=2
23 zstyle ":completion:*:descriptions" format "%B%d%b"
24 ###########################################################