completion.zsh 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. if [ "$OSTYPE[0,7]" = "solaris" ]
  22. then
  23. zstyle ':completion:*:*:*:*:processes' command "ps -u $USER -o pid,user,comm"
  24. else
  25. zstyle ':completion:*:*:*:*:processes' command "ps -u $USER -o pid,user,comm -w -w"
  26. fi
  27. # disable named-directories autocompletion
  28. zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories
  29. # Use caching so that commands like apt and dpkg complete are useable
  30. zstyle ':completion::complete:*' use-cache 1
  31. zstyle ':completion::complete:*' cache-path $ZSH_CACHE_DIR
  32. # Don't complete uninteresting users
  33. zstyle ':completion:*:*:*:users' ignored-patterns \
  34. adm amanda apache at avahi avahi-autoipd beaglidx bin cacti canna \
  35. clamav daemon dbus distcache dnsmasq dovecot fax ftp games gdm \
  36. gkrellmd gopher hacluster haldaemon halt hsqldb ident junkbust kdm \
  37. ldap lp mail mailman mailnull man messagebus mldonkey mysql nagios \
  38. named netdump news nfsnobody nobody nscd ntp nut nx obsrun openvpn \
  39. operator pcap polkitd postfix postgres privoxy pulse pvm quagga radvd \
  40. rpc rpcuser rpm rtkit scard shutdown squid sshd statd svn sync tftp \
  41. usbmux uucp vcsa wwwrun xfs '_*'
  42. # ... unless we really want to.
  43. zstyle '*' single-ignored show
  44. if [ "x$COMPLETION_WAITING_DOTS" = "xtrue" ]; then
  45. expand-or-complete-with-dots() {
  46. echo -n "\e[31m......\e[0m"
  47. zle expand-or-complete
  48. zle redisplay
  49. }
  50. zle -N expand-or-complete-with-dots
  51. bindkey "^I" expand-or-complete-with-dots
  52. fi