mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
8 lines
179 B
Plaintext
Executable File
8 lines
179 B
Plaintext
Executable File
#compdef zed fned
|
|
|
|
case $service in
|
|
(fned) _arguments ':shell function:_functions';;
|
|
(zed) _arguments '(-):file:_files' \
|
|
'(:)-f[edit function]:shell function:_functions';;
|
|
esac
|