about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2002-03-19 14:49:16 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2002-03-19 14:49:16 +0000
commit40c30874616c374f207ce79b98f8dd61a3911784 (patch)
treec3be5eab03ecc673054cfcbdabf1cef6f6830c0e /Completion
parentc4bc7124328cf4edd7b12b2ffe37e2fb108db864 (diff)
downloadzsh-40c30874616c374f207ce79b98f8dd61a3911784.tar.gz
zsh-40c30874616c374f207ce79b98f8dd61a3911784.tar.xz
zsh-40c30874616c374f207ce79b98f8dd61a3911784.zip
correct my mistake which broke file completion after grep
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_grep2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_grep b/Completion/Unix/Command/_grep
index 6d39c1ae0..7df73f7d7 100644
--- a/Completion/Unix/Command/_grep
+++ b/Completion/Unix/Command/_grep
@@ -11,7 +11,7 @@ if [[ $service = *GREP_OPT* ]]; then
 else
   arguments=(
     '(-e --regexp -f --file)1: :_guard "^--*" pattern'
-    '*:files:->files'
+    '*:files:_files'
   )
   command="$words[1]"
 fi