about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-04-23 12:00:57 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-04-23 12:00:57 +0000
commit29a3496ebb91cc418db4b5ba66837c59c8170df5 (patch)
tree4a38ed495686762226c7345f8f293bae70114749 /Completion
parent9e302211abf5c6403b15feb128a822921f13674e (diff)
downloadzsh-29a3496ebb91cc418db4b5ba66837c59c8170df5.tar.gz
zsh-29a3496ebb91cc418db4b5ba66837c59c8170df5.tar.xz
zsh-29a3496ebb91cc418db4b5ba66837c59c8170df5.zip
18462: complete files in addition to commands
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_sh b/Completion/Unix/Command/_sh
index 559c6ad1b..9e72a2918 100644
--- a/Completion/Unix/Command/_sh
+++ b/Completion/Unix/Command/_sh
@@ -16,7 +16,9 @@ else
   local n=${words[(b:2:i)[^-]*]}
   if (( n <= CURRENT )); then
     compset -n $n
-    _normal && return 0
+    _alternative \
+      'files:file:_files' \
+      'commands:command:_normal' && return 0
   fi
   _default
 fi