1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-04 20:40:57 +02:00

make menu-select accept the match when typing a non-special character (11401)

This commit is contained in:
Sven Wischnowsky 2000-05-16 08:05:15 +00:00
parent 16ef2a7266
commit 57ed8b5441
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2000-05-16 Sven Wischnowsky <wischnow@zsh.org>
* 11401: Src/Zle/complist.c: make menu-select accept the match
when typing a non-special character
2000-05-16 Tanaka Akira <akr@zsh.org> 2000-05-16 Tanaka Akira <akr@zsh.org>
* 11396: Completion/User/_look: display a message when * 11396: Completion/User/_look: display a message when

View file

@ -2112,6 +2112,7 @@ domenuselect(Hookdef dummy, Chdata dat)
continue; continue;
} else { } else {
ungetkeycmd(); ungetkeycmd();
acc = 1;
break; break;
} }
do_single(**p); do_single(**p);