diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:28:57 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:28:57 +0000 |
commit | 3babe8ef710619c6326439845fc4d6f444f62353 (patch) | |
tree | 80953e26438ec5c5b134db1e0fc1587456a3b41a | |
parent | 39ee4570ab92ca460c3e4f027669d856a3f922cd (diff) | |
download | zsh-3babe8ef710619c6326439845fc4d6f444f62353.tar.gz zsh-3babe8ef710619c6326439845fc4d6f444f62353.tar.xz zsh-3babe8ef710619c6326439845fc4d6f444f62353.zip |
moved to Completion/Zsh/Command/_kill
-rw-r--r-- | Completion/Builtins/_kill | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Completion/Builtins/_kill b/Completion/Builtins/_kill deleted file mode 100644 index 50796d36f..000000000 --- a/Completion/Builtins/_kill +++ /dev/null @@ -1,11 +0,0 @@ -#defcomp kill - -local list - -if [[ -iprefix '-' ]]; then - complist -k "($signals[1,-3])" -else - complist -P '%' -j - list=("$(ps 2>/dev/null)") - complist -y '$list' -s '`ps 2>/dev/null | tail +2 | cut -c1-5`' -fi |