1
0
mirror of https://github.com/akelge/vim synced 2025-07-04 22:29:05 +00:00

New ZSH folder (3)

This commit is contained in:
2010-11-18 08:54:27 +00:00
parent 5b09568680
commit afbedd3eee
15 changed files with 0 additions and 0 deletions

19
zsh/zsh.d/20-complete Normal file
View File

@ -0,0 +1,19 @@
#######################################################################################
# Start autocomplete
autoload -U compinit; compinit
# autoload -U compsys;
# compctl -g "*(-/)" + -g ".*(-/)" cd
# allow approximate
zstyle ':completion:*' completer _complete _match _approximate
zstyle ':completion:*:match:*' original only
zstyle ':completion:*:approximate:*' max-errors 1 numeric
# tab completion for PID :D
zstyle ':completion:*:*:kill:*' menu yes select
zstyle ':completion:*:kill:*' force-list always
# cd not select parent dir
zstyle ':completion:*:cd:*' ignore-parents parent pwd
# vim: set ts=4 sw=4 tw=0 ft=zsh :