diff options
author | Clint Adams <clint@users.sourceforge.net> | 2006-09-30 21:16:12 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2006-09-30 21:16:12 +0000 |
commit | 76a81e5393bf9f113e6158d10a4bba965acfd053 (patch) | |
tree | f725158e4c698240381059b26b1c54376309383b /Completion/Unix | |
parent | 3ede15153ee4f39c06ffe16ed3dcacab90e92436 (diff) | |
download | zsh-76a81e5393bf9f113e6158d10a4bba965acfd053.tar.gz zsh-76a81e5393bf9f113e6158d10a4bba965acfd053.tar.xz zsh-76a81e5393bf9f113e6158d10a4bba965acfd053.zip |
22795: handle https urls.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_urls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Type/_urls b/Completion/Unix/Type/_urls index c65b3610b..853a48553 100644 --- a/Completion/Unix/Type/_urls +++ b/Completion/Unix/Type/_urls @@ -66,7 +66,7 @@ if ! compset -P '(#b)([-+.a-z0-9]#):'; then compset -S '[^:/]*' && compstate[to_end]='' [[ -d $urls/bookmark ]] && compadd "$expl[@]" bookmark: && ret=0 - compadd "$expl[@]" file: ftp:// gopher:// http:// && ret=0 + compadd "$expl[@]" file: ftp:// gopher:// http:// https:// && ret=0 done (( ret )) || return 0 done @@ -75,7 +75,7 @@ fi scheme="$match[1]" case "$scheme" in - http|ftp|gopher) + http(|s)|ftp|gopher) if ! compset -P //; then _wanted -C "$scheme" prefixes expl 'end of prefix' compadd -S '' "$@" // return |