aboutsummaryrefslogtreecommitdiffhomepage
path: root/zsh/completion.zsh
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2023-02-09 13:40:10 +0800
committerHsieh Chin Fan <pham@topo.tw>2023-02-09 14:26:46 +0800
commita59bce4ea2ea26bdb57765d0b83e92d73096d6b1 (patch)
treecb0bb0e1b023f5b1a498791e7a8f375b4c98527c /zsh/completion.zsh
parentcda2dc0913dd77d91249afbe5f136f752f9bd7e4 (diff)
Apply zsh completion from on-my-zsh
Diffstat (limited to 'zsh/completion.zsh')
-rw-r--r--zsh/completion.zsh78
1 files changed, 78 insertions, 0 deletions
diff --git a/zsh/completion.zsh b/zsh/completion.zsh
new file mode 100644
index 0000000..2c56954
--- /dev/null
+++ b/zsh/completion.zsh
@@ -0,0 +1,78 @@
1# fixme - the load process here seems a bit bizarre
2zmodload -i zsh/complist
3
4WORDCHARS=''
5
6unsetopt menu_complete # do not autoselect the first completion entry
7unsetopt flowcontrol
8setopt auto_menu # show completion menu on successive tab press
9setopt complete_in_word
10setopt always_to_end
11
12# should this be in keybindings?
13bindkey -M menuselect '^o' accept-and-infer-next-history
14zstyle ':completion:*:*:*:*:*' menu select
15
16# case insensitive (all), partial-word and substring completion
17if [[ "$CASE_SENSITIVE" = true ]]; then
18 zstyle ':completion:*' matcher-list 'r:|=*' 'l:|=* r:|=*'
19else
20 if [[ "$HYPHEN_INSENSITIVE" = true ]]; then
21 zstyle ':completion:*' matcher-list 'm:{a-zA-Z-_}={A-Za-z_-}' 'r:|=*' 'l:|=* r:|=*'
22 else
23 zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|=*' 'l:|=* r:|=*'
24 fi
25fi
26unset CASE_SENSITIVE HYPHEN_INSENSITIVE
27
28# Complete . and .. special directories
29zstyle ':completion:*' special-dirs true
30
31zstyle ':completion:*' list-colors ''
32zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
33
34if [[ "$OSTYPE" = solaris* ]]; then
35 zstyle ':completion:*:*:*:*:processes' command "ps -u $USERNAME -o pid,user,comm"
36else
37 zstyle ':completion:*:*:*:*:processes' command "ps -u $USERNAME -o pid,user,comm -w -w"
38fi
39
40# disable named-directories autocompletion
41zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories
42
43# Use caching so that commands like apt and dpkg complete are useable
44zstyle ':completion:*' use-cache yes
45zstyle ':completion:*' cache-path $ZSH_CACHE_DIR
46
47# Don't complete uninteresting users
48zstyle ':completion:*:*:*:users' ignored-patterns \
49 adm amanda apache at avahi avahi-autoipd beaglidx bin cacti canna \
50 clamav daemon dbus distcache dnsmasq dovecot fax ftp games gdm \
51 gkrellmd gopher hacluster haldaemon halt hsqldb ident junkbust kdm \
52 ldap lp mail mailman mailnull man messagebus mldonkey mysql nagios \
53 named netdump news nfsnobody nobody nscd ntp nut nx obsrun openvpn \
54 operator pcap polkitd postfix postgres privoxy pulse pvm quagga radvd \
55 rpc rpcuser rpm rtkit scard shutdown squid sshd statd svn sync tftp \
56 usbmux uucp vcsa wwwrun xfs '_*'
57
58# ... unless we really want to.
59zstyle '*' single-ignored show
60
61if [[ ${COMPLETION_WAITING_DOTS:-false} != false ]]; then
62 expand-or-complete-with-dots() {
63 # use $COMPLETION_WAITING_DOTS either as toggle or as the sequence to show
64 [[ $COMPLETION_WAITING_DOTS = true ]] && COMPLETION_WAITING_DOTS="%F{red}…%f"
65 # turn off line wrapping and print prompt-expanded "dot" sequence
66 printf '\e[?7l%s\e[?7h' "${(%)COMPLETION_WAITING_DOTS}"
67 zle expand-or-complete
68 zle redisplay
69 }
70 zle -N expand-or-complete-with-dots
71 # Set the function as the default tab completion widget
72 bindkey -M emacs "^I" expand-or-complete-with-dots
73 bindkey -M viins "^I" expand-or-complete-with-dots
74 bindkey -M vicmd "^I" expand-or-complete-with-dots
75fi
76
77# automatically load bash completion functions
78autoload -U +X bashcompinit && bashcompinit