about summary refs log tree commit diff
path: root/Completion/Base
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-30 11:09:49 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-30 11:09:49 +0000
commit6757c3c734759b8b51fa99b6b60bcd2dbdc9522d (patch)
tree4e435beb032e9410a60829f5fa66096c8ae298dd /Completion/Base
parentcd5e39ef5066d8b11d5c5c5dd0023efdd94631f1 (diff)
downloadzsh-6757c3c734759b8b51fa99b6b60bcd2dbdc9522d.tar.gz
zsh-6757c3c734759b8b51fa99b6b60bcd2dbdc9522d.tar.xz
zsh-6757c3c734759b8b51fa99b6b60bcd2dbdc9522d.zip
fixelt for the test for the suffix style; if word contains only a tilde, don't try to expand it (14160)
Diffstat (limited to 'Completion/Base')
-rw-r--r--Completion/Base/Completer/_expand2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Base/Completer/_expand b/Completion/Base/Completer/_expand
index f3da119e1..c6250cd16 100644
--- a/Completion/Base/Completer/_expand
+++ b/Completion/Base/Completer/_expand
@@ -34,7 +34,7 @@ fi
 
 zstyle -T ":completion:${curcontext}:" suffix &&
   [[ "$word" = (\~*/|*\$(|[=~#^+])[a-zA-Z0-9_\[\]]##[^a-zA-Z0-9_\[\]]|*\$\{*\}?) &&
-     "${(e)word}" != *[][^~*?\<\>\{\}\|]* ]] &&
+     "${(e)word}" != *[][^*?\(\)\<\>\{\}\|]* ]] &&
   return 1
 
 zstyle -t ":completion:${curcontext}:" accept-exact ||