diff options
Diffstat (limited to 'completion.zsh')
-rw-r--r-- | completion.zsh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/completion.zsh b/completion.zsh index c993620ce..795903d0d 100644 --- a/completion.zsh +++ b/completion.zsh @@ -19,7 +19,7 @@ zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l: zstyle ':completion:*' list-colors '' zstyle ':completion:*' hosts $( sed 's/[, ].*$//' $HOME/.ssh/known_hosts ) -#unsetopt MENU_COMPLETE +unsetopt MENU_COMPLETE #setopt AUTO_MENU # should this be in keybindings? @@ -31,3 +31,10 @@ zstyle ':completion:*:*:*:*:*' menu yes select zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01' zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w" zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/known_hosts` + + +#complete on history +# zstyle ':completion:*:history-words' stop yes +# zstyle ':completion:*:history-words' remove-all-dups yes +# zstyle ':completion:*:history-words' list false +# zstyle ':completion:*:history-words' menu yes
\ No newline at end of file |