about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_sh4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ad25b8b1b..8fcebc5d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2003-04-23  Oliver Kiddle  <opk@zsh.org>
 
+	* 18462: Completion/Unix/Command/_sh: complete files in addition
+	to commands
+
 	* 18461: Completion/Unix/Type/_perl_builtin_funcs: handle cases
 	where the perlfunc man page is compressed
 
@@ -14,7 +17,7 @@
 
 	* 18458: Completion/Unix/Command/_renice: new completion for renice
 
-	* 18458: Completion/Base/Utility/_describe: handle the prefix-needed style
+	* 18458: Completion/Base/Utility/_describe: handle prefix-needed style
 
 2003-04-19  Felix Rosencrantz <f_rosencrantz@yahoo.com>
 
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