mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 12:40:58 +02:00
another fix for `select=long*' in menu style (11500)
This commit is contained in:
parent
57658af8a5
commit
30d8c23981
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2000-05-22 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 11500: Completion/Core/_main_complete: another fix for
|
||||
`select=long*' in menu style
|
||||
|
||||
* 11497: Completion/Core/_main_complete: fix for select-long-list
|
||||
in menu style
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue