about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:26:42 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:26:42 +0000
commit8638ff684bda45d4eafe5fa934c5cd1fb1a42f8f (patch)
treeb7d5fb49306365a3aa840b159d0201f60011c0f2 /Completion
parent265e58278b7c3795149bb411f5bc025cfbeac8ef (diff)
downloadzsh-8638ff684bda45d4eafe5fa934c5cd1fb1a42f8f.tar.gz
zsh-8638ff684bda45d4eafe5fa934c5cd1fb1a42f8f.tar.xz
zsh-8638ff684bda45d4eafe5fa934c5cd1fb1a42f8f.zip
moved to Completion/Zsh/Command/_command
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Builtins/_command10
1 files changed, 0 insertions, 10 deletions
diff --git a/Completion/Builtins/_command b/Completion/Builtins/_command
deleted file mode 100644
index b90ec933e..000000000
--- a/Completion/Builtins/_command
+++ /dev/null
@@ -1,10 +0,0 @@
-#compdef command
-
-if [[ CURRENT -ge 3 ]]; then
-  compset -n 2
-  _normal
-else
-  local expl
-
-  _wanted commands expl 'external command' compadd "$@" -k commands
-fi