about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-01-14 09:40:52 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-01-14 09:40:52 +0000
commitc64a281a9b21bef8cc40abbf222e63d599ae4d5e (patch)
tree343aa2ef2542e2fc7d50b05c929219482c6e73f1
parent2367f63ee23877b99418a962459bd6fea84e47e5 (diff)
downloadzsh-c64a281a9b21bef8cc40abbf222e63d599ae4d5e.tar.gz
zsh-c64a281a9b21bef8cc40abbf222e63d599ae4d5e.tar.xz
zsh-c64a281a9b21bef8cc40abbf222e63d599ae4d5e.zip
zsh-workers/9317
-rw-r--r--Completion/User/_urls4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/User/_urls b/Completion/User/_urls
index 3bd5dfa72..7b68b33f4 100644
--- a/Completion/User/_urls
+++ b/Completion/User/_urls
@@ -88,7 +88,7 @@ case "$scheme" in
     if [[ -f "$urls_path/$scheme/${(Q)PREFIX}${(Q)SUFFIX}" &&
 	  -s "$urls_path/$scheme/${(Q)PREFIX}${(Q)SUFFIX}" ]]; then
       _wanted -C bookmark bookmarks expl bookmarks &&
-          compadd "$expl[@]" "$@" -QU - \
+          compadd "$expl[@]" "$@" -U - \
               "$ipre$(<"$urls_path/$scheme/${(Q)PREFIX}${(Q)SUFFIX}")" && ret=0
     else
       if _wanted -C bookmark files expl 'bookmark'; then
@@ -107,7 +107,7 @@ if ! compset -P '(#b)([^/]#)/' &&
   uhosts=($urls_path/$scheme/$PREFIX*$SUFFIX(/:t))
   (( $#uhosts )) || _hosts -S/ && ret=0
   [[ "$scheme" = http ]] && uhosts=($uhosts $localhttp_servername)
-  compadd "$expl[@]" "$@" -QS/ - $uhosts && ret=0
+  compadd "$expl[@]" "$@" -S/ - $uhosts && ret=0
   return ret
 fi
 host="$match[1]"