diff options
author | Clint Adams <clint@users.sourceforge.net> | 2002-08-06 20:40:56 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2002-08-06 20:40:56 +0000 |
commit | 63c52e8e01b2109a154bda93e92314871d616f4d (patch) | |
tree | 0e663fad61b82af1851233502a90aec6b1531737 /Completion | |
parent | a8f7d57e830f8eac90e265a566a8ff96c89c8571 (diff) | |
download | zsh-63c52e8e01b2109a154bda93e92314871d616f4d.tar.gz zsh-63c52e8e01b2109a154bda93e92314871d616f4d.tar.xz zsh-63c52e8e01b2109a154bda93e92314871d616f4d.zip |
17507: Completion/Unix/Type/_urls: complete local files after file:/// .
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Type/_urls | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Completion/Unix/Type/_urls b/Completion/Unix/Type/_urls index e6e9a38d4..4482fedd6 100644 --- a/Completion/Unix/Type/_urls +++ b/Completion/Unix/Type/_urls @@ -82,6 +82,7 @@ case "$scheme" in fi ;; file) + [[ -prefix /// ]] && compset -P // if ! compset -P //; then _tags -C file files while _tags; do |