diff options
author | m0viefreak <m0viefreak.cm@googlemail.com> | 2016-03-13 22:51:11 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2016-03-21 09:43:29 +0000 |
commit | cbc44bd64a39649b7c73123c6eb85559d8d26f6c (patch) | |
tree | e1ac61af4face736858d12d956f2a9f40bc4bf99 /Doc/Zsh | |
parent | ee2f0dbed113742cd9f6f5574ab2e2d280a0de34 (diff) | |
download | zsh-cbc44bd64a39649b7c73123c6eb85559d8d26f6c.tar.gz zsh-cbc44bd64a39649b7c73123c6eb85559d8d26f6c.tar.xz zsh-cbc44bd64a39649b7c73123c6eb85559d8d26f6c.zip |
38145: ZLE parameters for isearch and completion suffixes
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/zle.yo | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo index 414c8dd65..161cef77f 100644 --- a/Doc/Zsh/zle.yo +++ b/Doc/Zsh/zle.yo @@ -835,6 +835,19 @@ which always gives the number of the history line being added to the main shell's history. tt(HISTNO) refers to the line being retrieved within zle. ) +vindex(ISEARCH_ACTIVE) +vindex(ISEARCH_START) +vindex(ISEARCH_END) +xitem(tt(ISEARCH_ACTIVE) (integer)) +xitem(tt(ISEARCH_START) (integer)) +item(tt(ISEARCH_END) (integer))( +tt(ISEARCH_ACTIVE) indicates whether an incremental search minibuffer +is active. tt(ISEARCH_START) and tt(ISEARCH_END) give the location of +the matched pattern and are in the same units as tt(CURSOR). They are +only valid for reading when tt(ISEARCH_ACTIVE) is non-zero. + +All parameters are read-only. +) vindex(KEYMAP) item(tt(KEYMAP) (scalar))( The name of the currently selected keymap; read-only. @@ -977,6 +990,19 @@ and tt(zle_highlight); see ifzman(the section CHARACTER HIGHLIGHTING below)\ ifnzman(noderef(Character Highlighting)) for details. ) +vindex(SUFFIX_ACTIVE) +vindex(SUFFIX_START) +vindex(SUFFIX_END) +xitem(tt(SUFFIX_ACTIVE) (integer)) +xitem(tt(SUFFIX_START) (integer)) +item(tt(SUFFIX_END) (integer))( +tt(SUFFIX_ACTIVE) indicates whether an auto-removable completion suffix +is currently active. tt(SUFFIX_START) and tt(SUFFIX_END) give the +location of the suffix and are in the same units as tt(CURSOR). They are +only valid for reading when tt(SUFFIX_ACTIVE) is non-zero. + +All parameters are read-only. +) vindex(UNDO_CHANGE_NO) item(tt(UNDO_CHANGE_NO) (integer))( A number representing the state of the undo history. The only use |