1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-12-01 04:10:57 +01:00
zsh/Completion/Zsh/Command/_zed
Daniel Shahaf 0f8725beeb 39423: _zed: Support the '--' end-of-options mark.
This matters for fned'ing vcs_info hooks.
2016-09-24 07:22:16 +00:00

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