about summary refs log tree commit diff
path: root/Completion/Base/_sub_commands
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-02-26 15:05:37 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-02-26 15:05:37 +0000
commit183f6b06d09fa3ed143a098f2fc5f7b6c17af7ef (patch)
tree5cc0321cfadd91445aaa40fe9709ee15ae127697 /Completion/Base/_sub_commands
parent006e9b9afba10e2e64d86538fe5777376c8f0f57 (diff)
downloadzsh-183f6b06d09fa3ed143a098f2fc5f7b6c17af7ef.tar.gz
zsh-183f6b06d09fa3ed143a098f2fc5f7b6c17af7ef.tar.xz
zsh-183f6b06d09fa3ed143a098f2fc5f7b6c17af7ef.zip
some small functions for completing sub-commands (generic function, init scripts, apachectl) (13536)
Diffstat (limited to 'Completion/Base/_sub_commands')
-rwxr-xr-xCompletion/Base/_sub_commands9
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/Base/_sub_commands b/Completion/Base/_sub_commands
new file mode 100755
index 000000000..429931a16
--- /dev/null
+++ b/Completion/Base/_sub_commands
@@ -0,0 +1,9 @@
+#autoload
+
+local expl
+
+if [[ CURRENT -eq 2 ]]; then
+  _wanted commands expl command compadd "$@"
+else
+  _message 'no more arguments'
+fi