diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-10-06 08:25:28 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-10-06 08:25:28 +0000 |
commit | 22899d3788d5eb8bad9440f2f0886170bb7ca61d (patch) | |
tree | 6247f83aaefc37ce18334221b1f5e4e037948cce /Doc | |
parent | af7d4869e6a04ad48550d5dcd8a7bdd6193f5d9b (diff) | |
download | zsh-22899d3788d5eb8bad9440f2f0886170bb7ca61d.tar.gz zsh-22899d3788d5eb8bad9440f2f0886170bb7ca61d.tar.xz zsh-22899d3788d5eb8bad9440f2f0886170bb7ca61d.zip |
28285: zle-isearch-update and zle-isearch-exit
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Zsh/zle.yo | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo index 87933b93d..92b5f20a1 100644 --- a/Doc/Zsh/zle.yo +++ b/Doc/Zsh/zle.yo @@ -887,6 +887,28 @@ If they do not exist, no special action is taken. The environment provided is identical to that for any other editing widget. startitem() +tindex(zle-isearch-exit) +item(tt(zle-isearch-exit))( +Executed at the end of incremental search at the point where the isearch +prompt is removed from the display. See tt(zle-isearch-update) for +an example. +) +tindex(zle-isearch-update) +item(tt(zle-isearch-update))( +Executed within incremental search when the display is about to be +redrawn. Additional output below the incremental search prompt can be +generated by using `tt(zle -M)' within the widget. For example, + +example(zle-isearch-update+LPAR()RPAR() { zle -M "Line $HISTNO"; } +zle -N zle-isearch-update) + +Note the line output by `tt(zle -M)' is not deleted on exit from +incremental search. This can be done from a tt(zle-isearch-exit) +widget: + +example(zle-isearch-exit+LPAR()RPAR() { zle -M ""; } +zle -N zle-isearch-exit) +) tindex(zle-line-init) item(tt(zle-line-init))( Executed every time the line editor is started to read a new line |