diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-14 09:40:52 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-14 09:40:52 +0000 |
commit | c64a281a9b21bef8cc40abbf222e63d599ae4d5e (patch) | |
tree | 343aa2ef2542e2fc7d50b05c929219482c6e73f1 /Completion/User | |
parent | 2367f63ee23877b99418a962459bd6fea84e47e5 (diff) | |
download | zsh-c64a281a9b21bef8cc40abbf222e63d599ae4d5e.tar.gz zsh-c64a281a9b21bef8cc40abbf222e63d599ae4d5e.tar.xz zsh-c64a281a9b21bef8cc40abbf222e63d599ae4d5e.zip |
zsh-workers/9317
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_urls | 4 |
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]" |