diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Type/_urls | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 3ef9b8ea8..0bdeeaeb3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-05-20 Peter Stephenson <p.stephenson@samsung.com> + + * Ismail: 35232: Completion/Unix/Type/_urls: matching + parentheses. + 2015-05-19 Daniel Shahaf <d.s@daniel.shahaf.name> * 35224: Completion/Unix/Command/_git: completion: git: Add diff --git a/Completion/Unix/Type/_urls b/Completion/Unix/Type/_urls index 97b1a4402..6f23803ed 100644 --- a/Completion/Unix/Type/_urls +++ b/Completion/Unix/Type/_urls @@ -75,7 +75,7 @@ fi scheme="$match[1]" case "$scheme" in - http(|s)|(|s)ftp|scp|gopher) + (http(|s)|(|s)ftp|scp|gopher) if ! compset -P //; then _wanted -C "$scheme" prefixes expl 'end of prefix' compadd -S '' "$@" // return |