diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-22 13:55:57 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-22 13:55:57 +0000 |
commit | 30d8c239818ae93c574e046bcc4c07d63ff9017c (patch) | |
tree | ec733dda248f59ce67a2f4d937f557fd643ffa2b /Completion/Core | |
parent | 57658af8a516811b6bada66ee247a570213ae06d (diff) | |
download | zsh-30d8c239818ae93c574e046bcc4c07d63ff9017c.tar.gz zsh-30d8c239818ae93c574e046bcc4c07d63ff9017c.tar.xz zsh-30d8c239818ae93c574e046bcc4c07d63ff9017c.zip |
another fix for `select=long*' in menu style (11500)
Diffstat (limited to 'Completion/Core')
-rw-r--r-- | Completion/Core/_main_complete | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Completion/Core/_main_complete b/Completion/Core/_main_complete index bb10706d8..a9a1d2a9a 100644 --- a/Completion/Core/_main_complete +++ b/Completion/Core/_main_complete @@ -194,7 +194,8 @@ if [[ $compstate[old_list] = keep || nm -gt 1 ]]; then zmodload -i zsh/complist MENUSELECT=0 fi - else + fi + if [[ "$MENUSELECT" != 0 ]]; then sel=( "${(@M)_menu_style:#select*}" ) if (( $#sel )); then |