From 5449458e5a1f3cafd04c1a5bac25f9d64ecb9b91 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 30 Jul 2009 19:01:56 +0000 Subject: users/14267: files added by ignore-line should be quoted --- Completion/Base/Core/_description | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'Completion/Base') diff --git a/Completion/Base/Core/_description b/Completion/Base/Core/_description index 593369a0a..3d993271c 100644 --- a/Completion/Base/Core/_description +++ b/Completion/Base/Core/_description @@ -49,13 +49,14 @@ if [[ -z "$_comp_no_ignore" ]]; then zstyle -s ":completion:${curcontext}:$1" ignore-line hidden && case "$hidden" in - true|yes|on|1) _comp_ignore=( "$_comp_ignore[@]" "$words[@]" );; - current) _comp_ignore=( "$_comp_ignore[@]" "$words[CURRENT]" );; - current-shown) [[ "$compstate[old_list]" = *shown* ]] && - _comp_ignore=( "$_comp_ignore[@]" "$words[CURRENT]" );; + true|yes|on|1) _comp_ignore=( "$_comp_ignore[@]" ${(q)"${words[@]}"} );; + current) _comp_ignore=( "$_comp_ignore[@]" "${(q)words[CURRENT]}" );; + current-shown) + [[ "$compstate[old_list]" = *shown* ]] && + _comp_ignore=( "$_comp_ignore[@]" "${(q)words[CURRENT]}" );; other) _comp_ignore=( "$_comp_ignore[@]" - "${(@)words[1,CURRENT-1]}" - "${(@)words[CURRENT+1,-1]}" );; + "${(@q)words[1,CURRENT-1]}" + "${(@q)words[CURRENT+1,-1]}" );; esac # Ensure the ignore option is first so we can override it -- cgit 1.4.1