1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-12 01:11:27 +02:00

19106: document use for _menu

This commit is contained in:
Oliver Kiddle 2003-09-21 16:13:53 +00:00
parent 239872c578
commit 5de7581394
2 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,7 @@
2003-09-21 Oliver Kiddle <opk@zsh.org>
* 19106: Doc/Zsh/compsys.yo: document use for _menu
2003-09-17 Vin Shelton <acs@alumni.princeton.edu> 2003-09-17 Vin Shelton <acs@alumni.princeton.edu>
* 19087: Doc/Zsh/mod_system.yo: Fix up makeinfo warning. * 19087: Doc/Zsh/mod_system.yo: Fix up makeinfo warning.

View file

@ -2784,12 +2784,13 @@ not be used.
) )
findex(_menu) findex(_menu)
item(tt(_menu))( item(tt(_menu))(
This completer is a simple example function implemented to show how This completer was written as simple example function to show how menu
menu completion can be done in shell code. It should be used as the completion can be enabled in shell code. However, it has the notable
first completer and has the effect of making later completers perform effect of disabling menu selection which can be useful with
menu completion. Note that this is independent of the setting of the tt(_generic) based widgets. It should be used as the first completer in
tt(MENU_COMPLETE) option and does not work with the other the list. Note that this is independent of the setting of the
menu completion widgets such as tt(reverse-menu-complete), or tt(MENU_COMPLETE) option and does not work with the other menu
completion widgets such as tt(reverse-menu-complete), or
tt(accept-and-menu-complete). tt(accept-and-menu-complete).
) )
findex(_oldlist) findex(_oldlist)