2010-09-26 14:03:44 +00:00
|
|
|
# fixme - the load process here seems a bit bizarre
|
2009-09-22 22:27:28 +00:00
|
|
|
|
2010-03-09 13:09:08 +00:00
|
|
|
unsetopt menu_complete # do not autoselect the first completion entry
|
|
|
|
unsetopt flowcontrol
|
|
|
|
setopt auto_menu # show completion menu on succesive tab press
|
2009-09-22 22:27:28 +00:00
|
|
|
setopt complete_in_word
|
|
|
|
setopt always_to_end
|
2009-08-28 18:14:17 +00:00
|
|
|
|
|
|
|
WORDCHARS=''
|
|
|
|
|
|
|
|
autoload -U compinit
|
2010-04-09 02:35:35 +00:00
|
|
|
compinit -i
|
2009-08-28 18:14:17 +00:00
|
|
|
|
|
|
|
zmodload -i zsh/complist
|
|
|
|
|
2009-09-06 12:19:33 +00:00
|
|
|
## case-insensitive (all),partial-word and then substring completion
|
2009-10-07 20:08:54 +00:00
|
|
|
if [ "x$CASE_SENSITIVE" = "xtrue" ]; then
|
2009-10-07 20:01:52 +00:00
|
|
|
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
|
|
|
unset CASE_SENSITIVE
|
|
|
|
else
|
|
|
|
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
|
|
|
fi
|
2009-09-06 12:19:33 +00:00
|
|
|
|
2009-08-28 18:14:17 +00:00
|
|
|
zstyle ':completion:*' list-colors ''
|
2009-11-08 23:34:02 +00:00
|
|
|
|
2009-09-22 22:27:28 +00:00
|
|
|
# should this be in keybindings?
|
2009-08-28 18:14:17 +00:00
|
|
|
bindkey -M menuselect '^o' accept-and-infer-next-history
|
|
|
|
|
2010-03-09 13:09:08 +00:00
|
|
|
zstyle ':completion:*:*:*:*:*' menu select
|
2009-08-28 18:14:17 +00:00
|
|
|
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"
|
2009-11-08 23:34:02 +00:00
|
|
|
|
2010-09-26 14:03:44 +00:00
|
|
|
# disable named-directories autocompletion
|
|
|
|
zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories
|
|
|
|
cdpath=(.)
|
|
|
|
|
|
|
|
|
2009-11-08 23:34:02 +00:00
|
|
|
# Load known hosts file for auto-completion with ssh and scp commands
|
|
|
|
if [ -f ~/.ssh/known_hosts ]; then
|
|
|
|
zstyle ':completion:*' hosts $( sed 's/[, ].*$//' $HOME/.ssh/known_hosts )
|
|
|
|
zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/known_hosts`
|
|
|
|
fi
|