]> jspc29.x-matter.uni-frankfurt.de Git - trbnettools.git/blob - zsh/README
094d732eb2cc8fd00cc13761268595cd45168c84
[trbnettools.git] / zsh / README
1 This folder is to support the trbnet commands (trbcmd, trbflash, etc.) with
2 the zsh autocompletion.
3
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:
7
8
9 ###########################################################
10 # COMPLETION SETTINGS
11 ## add custom completion scripts
12 fpath=(~/trbsoft/trbnettools/zsh/completion $fpath)
13 # compsys initialization
14
15 zmodload zsh/complist
16 autoload -U compinit
17 compinit
18
19 zstyle ':completion:*' special-dirs true
20
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 ###########################################################