mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 14:04:03 +01:00
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
#compdef compdef
|
|
|
|
local state line expl list disp
|
|
|
|
_arguments -C -s \
|
|
'(-d)-a[make function autoloadable]' \
|
|
'(-d -p -P)-n[leave existing definitions intact]' \
|
|
'(-a -n -p -P -k -K)-d[delete]:*:completed command:->ccom' \
|
|
'(-n -d -P -k -K)-p[completion for command matching pattern]:completion function:->cfun:pattern' \
|
|
'(-n -d -p -k -K)-P[as -p for commands without own completion]:completion function:->cfun:pattern' \
|
|
'(-d -p -P -K)-k[define widget and key binding]:completion function:->cfun:widget name::style:->style:*:key' \
|
|
'(-d -p -P -k)-K[define multiple widgets based on function]:completion function:->cfun:widget name::style:->style:*:key' \
|
|
'1:completion function:->cfun' \
|
|
'2:commands:_command_names'
|
|
|
|
|
|
case $state in
|
|
ccom)
|
|
_wanted commands expl 'completed command' compadd - ${(k)_comps}
|
|
;;
|
|
cfun)
|
|
list=( ${^fpath:/.}/_(|*[^~])(N:t) )
|
|
if zstyle -T ":completion:${curcontext}:functions" prefix-hidden; then
|
|
disp=( ${list[@]#_} )
|
|
_wanted functions expl 'completion function' \
|
|
compadd -d disp - "$list[@]"
|
|
else
|
|
_wanted functions expl 'completion function' compadd - "$list[@]"
|
|
fi
|
|
;;
|
|
style)
|
|
_wanted widgetstyle expl 'widget style' \
|
|
compadd -M 'r:|-=* r:|=*' \
|
|
complete-word delete-char-or-list expand-or-complete \
|
|
expand-or-complete-prefix list-choices menu-complete \
|
|
menu-expand-or-complete reverse-menu-complete
|
|
;;
|
|
esac
|