2010-12-05 16:57:06 +01:00
|
|
|
# @author Sebastian Tramp <mail@sebastian.tramp.name>
|
|
|
|
# @license http://opensource.org/licenses/gpl-license.php
|
|
|
|
#
|
|
|
|
# tab completion configuration
|
|
|
|
#
|
|
|
|
|
2011-02-07 19:50:26 +01:00
|
|
|
# add an autoload function path, if directory exists
|
|
|
|
# http://www.zsh.org/mla/users/2002/msg00232.html
|
2012-08-23 10:39:02 +02:00
|
|
|
functionsd="$ZSH_CONFIG/functions.d"
|
2011-02-07 19:50:26 +01:00
|
|
|
if [[ -d "$functionsd" ]] {
|
|
|
|
fpath=( $functionsd $fpath )
|
|
|
|
autoload -U $functionsd/*(:t)
|
|
|
|
}
|
|
|
|
|
2010-12-05 16:57:06 +01:00
|
|
|
# load completions system
|
|
|
|
zmodload -i zsh/complist
|
|
|
|
|
2011-08-14 13:26:50 +02:00
|
|
|
# auto rehash commands
|
|
|
|
# http://www.zsh.org/mla/users/2011/msg00531.html
|
|
|
|
zstyle ':completion:*' rehash true
|
|
|
|
|
2010-12-05 16:57:06 +01:00
|
|
|
# for all completions: menuselection
|
|
|
|
zstyle ':completion:*' menu select=1
|
|
|
|
|
|
|
|
# for all completions: grouping the output
|
|
|
|
zstyle ':completion:*' group-name ''
|
|
|
|
|
|
|
|
# for all completions: color
|
|
|
|
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
|
|
|
|
|
|
|
# for all completions: selected item
|
|
|
|
#zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} ma=0\;47
|
|
|
|
|
|
|
|
# completion of .. directories
|
|
|
|
zstyle ':completion:*' special-dirs true
|
|
|
|
|
|
|
|
# fault tolerance
|
|
|
|
zstyle ':completion:*' completer _complete _correct _approximate
|
|
|
|
# (1 error on 3 characters)
|
|
|
|
zstyle -e ':completion:*:approximate:*' max-errors 'reply=( $(( ($#PREFIX+$#SUFFIX)/3 )) numeric )'
|
|
|
|
|
|
|
|
# case insensitivity
|
|
|
|
#zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
|
|
|
zstyle ":completion:*" matcher-list 'm:{A-Zöäüa-zÖÄÜ}={a-zÖÄÜA-Zöäü}'
|
|
|
|
|
|
|
|
# for all completions: grouping / headline / ...
|
|
|
|
zstyle ':completion:*:messages' format $'\e[01;35m -- %d -- \e[00;00m'
|
|
|
|
zstyle ':completion:*:warnings' format $'\e[01;31m -- No Matches Found -- \e[00;00m'
|
|
|
|
zstyle ':completion:*:descriptions' format $'\e[01;33m -- %d -- \e[00;00m'
|
|
|
|
zstyle ':completion:*:corrections' format $'\e[01;33m -- %d -- \e[00;00m'
|
|
|
|
|
|
|
|
# statusline for many hits
|
|
|
|
zstyle ':completion:*:default' select-prompt $'\e[01;35m -- Match %M %P -- \e[00;00m'
|
|
|
|
|
|
|
|
# for all completions: show comments when present
|
|
|
|
zstyle ':completion:*' verbose yes
|
|
|
|
|
|
|
|
# in menu selection strg+space to go to subdirectories
|
|
|
|
bindkey -M menuselect '^@' accept-and-infer-next-history
|
|
|
|
|
|
|
|
# case-insensitive -> partial-word (cs) -> substring completion:
|
|
|
|
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
|
|
|
|
|
|
|
# caching of completion stuff
|
|
|
|
zstyle ':completion:*' use-cache on
|
2012-08-23 10:39:02 +02:00
|
|
|
zstyle ':completion:*' cache-path "$ZSH_CACHE"
|
2010-12-05 16:57:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ~dirs: reorder output sorting: named dirs over userdirs
|
|
|
|
zstyle ':completion::*:-tilde-:*:*' group-order named-directories users
|
|
|
|
|
|
|
|
# ssh: reorder output sorting: user over hosts
|
|
|
|
zstyle ':completion::*:ssh:*:*' tag-order "users hosts"
|
|
|
|
|
|
|
|
# kill: advanced kill completion
|
|
|
|
zstyle ':completion::*:kill:*:*' command 'ps xf -U $USER -o pid,%cpu,cmd'
|
|
|
|
zstyle ':completion::*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;32'
|
|
|
|
|
|
|
|
# rm: advanced completion (e.g. bak files first)
|
|
|
|
zstyle ':completion::*:rm:*:*' file-patterns '*.o:object-files:object\ file *(~|.(old|bak|BAK)):backup-files:backup\ files *~*(~|.(o|old|bak|BAK)):all-files:all\ files'
|
|
|
|
|
2011-02-11 12:48:09 +01:00
|
|
|
# vi: advanced completion (e.g. tex and rc files first)
|
2011-02-13 16:35:58 +01:00
|
|
|
zstyle ':completion::*:vi:*:*' file-patterns 'Makefile|*(rc|log)|*.(php|tex|bib|sql|zsh|ini|sh|vim|rb|sh|js|tpl|csv|rdf|txt|phtml|tex|py|n3):vi-files:vim\ likes\ these\ files *~(Makefile|*(rc|log)|*.(log|rc|php|tex|bib|sql|zsh|ini|sh|vim|rb|sh|js|tpl|csv|rdf|txt|phtml|tex|py|n3)):all-files:other\ files'
|
2011-02-11 12:48:09 +01:00
|
|
|
|
2010-12-05 16:57:06 +01:00
|
|
|
zstyle :compinstall filename '~/.zshrc'
|
|
|
|
|
|
|
|
autoload -Uz compinit && compinit
|
|
|
|
|