mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
7 lines
179 B
Text
Executable file
7 lines
179 B
Text
Executable file
#compdef zed fned
|
|
|
|
case $service in
|
|
(fned) _arguments ':shell function:_functions';;
|
|
(zed) _arguments '(-):file:_files' \
|
|
'(:)-f[edit function]:shell function:_functions';;
|
|
esac
|