completion.zsh 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # fixme - the load process here seems a bit bizarre
  2. unsetopt menu_complete # do not autoselect the first completion entry
  3. unsetopt flowcontrol
  4. setopt auto_menu # show completion menu on succesive tab press
  5. setopt complete_in_word
  6. setopt always_to_end
  7. WORDCHARS=''
  8. zmodload -i zsh/complist
  9. ## case-insensitive (all),partial-word and then substring completion
  10. if [ "x$CASE_SENSITIVE" = "xtrue" ]; then
  11. zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
  12. unset CASE_SENSITIVE
  13. else
  14. zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
  15. fi
  16. zstyle ':completion:*' list-colors ''
  17. # should this be in keybindings?
  18. bindkey -M menuselect '^o' accept-and-infer-next-history
  19. zstyle ':completion:*:*:*:*:*' menu select
  20. zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
  21. zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w"
  22. # disable named-directories autocompletion
  23. zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories
  24. cdpath=(.)
  25. # Use caching so that commands like apt and dpkg complete are useable
  26. zstyle ':completion::complete:*' use-cache 1
  27. zstyle ':completion::complete:*' cache-path $ZSH/cache/
  28. # Don't complete uninteresting users
  29. zstyle ':completion:*:*:*:users' ignored-patterns \
  30. adm amanda apache at avahi avahi-autoipd beaglidx bin cacti canna \
  31. clamav daemon dbus distcache dnsmasq dovecot fax ftp games gdm \
  32. gkrellmd gopher hacluster haldaemon halt hsqldb ident junkbust kdm \
  33. ldap lp mail mailman mailnull man messagebus mldonkey mysql nagios \
  34. named netdump news nfsnobody nobody nscd ntp nut nx obsrun openvpn \
  35. operator pcap polkitd postfix postgres privoxy pulse pvm quagga radvd \
  36. rpc rpcuser rpm rtkit scard shutdown squid sshd statd svn sync tftp \
  37. usbmux uucp vcsa wwwrun xfs '_*'
  38. # ... unless we really want to.
  39. zstyle '*' single-ignored show
  40. if [ "x$COMPLETION_WAITING_DOTS" = "xtrue" ]; then
  41. expand-or-complete-with-dots() {
  42. echo -n "\e[31m......\e[0m"
  43. zle expand-or-complete
  44. zle redisplay
  45. }
  46. zle -N expand-or-complete-with-dots
  47. bindkey "^I" expand-or-complete-with-dots
  48. fi