mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-12-01 04:10:57 +01:00
9 lines
203 B
Text
9 lines
203 B
Text
#compdef zed fned
|
|
|
|
case $service in
|
|
(fned) _arguments -S : ':shell function:_functions';;
|
|
(zed) _arguments -S : \
|
|
'(- 2):file:_files' \
|
|
'(1):shell function:_functions' \
|
|
'(1)-f[edit function]';;
|
|
esac
|