zsh git completion提供与当前前缀不同的参数

时间:2014-08-02 08:31:55

标签: git zsh zsh-completion

输入zsh

% git diff --ca<hit TAB>

优惠

--cached  -1        -3        -C        -M        -R        -U        -l        -q        -w                        
-0        -2        -B        -G        -O        -S        -b        -p        -u        -z

所以有完全超出当前类型前缀的完成。我该如何解决?

我的完成配置是:

autoload -Uz compinit
compinit

unsetopt AUTO_MENU MENU_COMPLETE COMPLETE_IN_WORD

zstyle ':completion:*' completer _complete
zstyle ':completion:*' group-name ''
zstyle ':completion:*' menu select=2
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=* l:|=*'
zstyle ':completion:*' menu select=long
zstyle ':completion:*' use-compctl false
zstyle ':completion:*' verbose false

0 个答案:

没有答案