diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:45:05 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:45:05 +0000 |
commit | c6686513ef7eb29cbe4ed4cc27076d13b2e02ab5 (patch) | |
tree | a1bf3a9a933b1d45ff6aacac6738f1c5654d24cb /Completion/Zsh/Command | |
parent | cbba9da870bd27bdfa176b07e155ba763de239c1 (diff) | |
download | zsh-c6686513ef7eb29cbe4ed4cc27076d13b2e02ab5.tar.gz zsh-c6686513ef7eb29cbe4ed4cc27076d13b2e02ab5.tar.xz zsh-c6686513ef7eb29cbe4ed4cc27076d13b2e02ab5.zip |
new _zed
Diffstat (limited to 'Completion/Zsh/Command')
-rwxr-xr-x | Completion/Zsh/Command/_zed | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/_zed b/Completion/Zsh/Command/_zed new file mode 100755 index 000000000..184234b02 --- /dev/null +++ b/Completion/Zsh/Command/_zed @@ -0,0 +1,7 @@ +#compdef zed fned + +case $service in +(fned) _arguments ':shell function:_functions';; +(zed) _arguments '(-):file:_files' \ + '(:)-f[edit function]:shell function:_functions';; +esac |