about summary refs log tree commit diff
path: root/Completion/Builtins
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:28:57 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:28:57 +0000
commit3babe8ef710619c6326439845fc4d6f444f62353 (patch)
tree80953e26438ec5c5b134db1e0fc1587456a3b41a /Completion/Builtins
parent39ee4570ab92ca460c3e4f027669d856a3f922cd (diff)
downloadzsh-3babe8ef710619c6326439845fc4d6f444f62353.tar.gz
zsh-3babe8ef710619c6326439845fc4d6f444f62353.tar.xz
zsh-3babe8ef710619c6326439845fc4d6f444f62353.zip
moved to Completion/Zsh/Command/_kill
Diffstat (limited to 'Completion/Builtins')
-rw-r--r--Completion/Builtins/_kill11
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