diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:29:05 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:29:05 +0000 |
commit | 5c48275831cfac74c7680cf9397d84432557d23c (patch) | |
tree | d0250ef16f5cc273fe0bc01e6fbc1dd1eeb83c39 /Completion/Zsh/Command/_kill | |
parent | 3babe8ef710619c6326439845fc4d6f444f62353 (diff) | |
download | zsh-5c48275831cfac74c7680cf9397d84432557d23c.tar.gz zsh-5c48275831cfac74c7680cf9397d84432557d23c.tar.xz zsh-5c48275831cfac74c7680cf9397d84432557d23c.zip |
moved from Completion/Builtins/_kill
Diffstat (limited to 'Completion/Zsh/Command/_kill')
-rw-r--r-- | Completion/Zsh/Command/_kill | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/_kill b/Completion/Zsh/Command/_kill new file mode 100644 index 000000000..5e3caed6a --- /dev/null +++ b/Completion/Zsh/Command/_kill @@ -0,0 +1,6 @@ +#compdef kill + +_alternative \ + 'signals:: _signals -p' \ + 'processes:: _pids' \ + 'jobs:: _jobs -t' |