mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-29 16:25:35 +01:00
32190: quote _path_files -W path when completing relative to ../
This commit is contained in:
parent
9e4468d38d
commit
407cfc0f4f
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
2013-12-28 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 32190 (cf. Alexey Bezhan: 32189): Completion/Zsh/Command/_cd:
|
||||
quote _path_files -W path in case of spaces or special characters
|
||||
when completing relative to ../
|
||||
|
||||
* 32186: Completion/Base/Completer/_expand: fix bad backreference;
|
||||
handle glob patterns that include backslashed quote characters
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ else
|
|||
# already handled by _command_names (see _autocd)
|
||||
|
||||
[[ CURRENT -ne 1 || ( -z "$path[(r).]" && $PREFIX != */* ) ]] &&
|
||||
alt=( "${cdpath+local-}directories:${cdpath+local }directory:_path_files $tmpWpath -/" "$alt[@]" )
|
||||
alt=( "${cdpath+local-}directories:${cdpath+local }directory:_path_files ${(j: :)${(@q)tmpWpath}} -/" "$alt[@]" )
|
||||
|
||||
if [[ CURRENT -eq argstart && noopts -eq 0 && $PREFIX = -* ]] &&
|
||||
zstyle -t ":completion:${curcontext}:options" complete-options; then
|
||||
|
|
Loading…
Reference in a new issue