| Server IP : 217.160.0.244 / Your IP : 216.73.217.138 Web Server : Apache System : Linux infong-eu155 4.4.400-icpu-108 #2 SMP Wed Feb 11 11:51:01 UTC 2026 x86_64 User : u100174116 ( 6746176) PHP Version : 8.5.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/zsh/functions/Completion/Zsh/ |
Upload File : |
#compdef disable
local -a ali_arr sali_arr func_arr
ali_arr=(${(k)aliases} ${(k)galiases})
sali_arr=(${(k)saliases})
func_arr=(${(k)functions})
_arguments -C -s -A "-*" -S \
"(-f -r -s -p)-a[act on regular or global aliases]:*:regular or global alias:compadd -k ali_arr" \
"(-a -r -s -p)-f[act on functions]:*:function:compadd -k func_arr" \
"(-a -f -s -p)-r[act on reserved words]:*:reserved-word:compadd -k reswords" \
"(-a -f -r -p)-s[act on suffix aliases]:*:suffix alias:compadd -k sali_arr" \
"(-a -f -r -s)-p[act on pattern characters]:*:pattern character:compadd -k patchars" \
'-m[treat arguments as patterns]' \
"*:builtin command:(${(k)builtins})"