mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-11 08:21:13 +01:00
17507: Completion/Unix/Type/_urls: complete local files after file:/// .
This commit is contained in:
parent
a8f7d57e83
commit
63c52e8e01
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-08-06 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 17507: Completion/Unix/Type/_urls: complete local files after
|
||||
file:/// .
|
||||
|
||||
2002-08-06 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 17504: Doc/Zsh/builtins.yo: note that `getopts' doesn't
|
||||
|
|
|
@ -82,6 +82,7 @@ case "$scheme" in
|
|||
fi
|
||||
;;
|
||||
file)
|
||||
[[ -prefix /// ]] && compset -P //
|
||||
if ! compset -P //; then
|
||||
_tags -C file files
|
||||
while _tags; do
|
||||
|
|
Loading…
Reference in a new issue