diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2002-07-01 16:50:41 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2002-07-01 16:50:41 +0000 |
commit | 1a1b108b341885da0a70d550384c9ec32a627615 (patch) | |
tree | fd8ad7f31204540e6d99bac4ef66a9e1914f2798 /Doc/Zsh/zle.yo | |
parent | 964f819070c1d506bfcd45e25704ae23c8f09ed4 (diff) | |
download | zsh-1a1b108b341885da0a70d550384c9ec32a627615.tar.gz zsh-1a1b108b341885da0a70d550384c9ec32a627615.tar.xz zsh-1a1b108b341885da0a70d550384c9ec32a627615.zip |
17390: new zle parameters $PREDISPLAY, $POSTDISPLAY
Diffstat (limited to 'Doc/Zsh/zle.yo')
-rw-r--r-- | Doc/Zsh/zle.yo | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo index 0cc1b52df..8022a1bdd 100644 --- a/Doc/Zsh/zle.yo +++ b/Doc/Zsh/zle.yo @@ -662,6 +662,22 @@ In a multi-line input at the secondary prompt, this read-only parameter contains the contents of the lines before the one the cursor is currently in. ) +vindex(PREDISPLAY) +item(tt(PREDISPLAY) (scalar))( +Text to be displayed before the start of the editable text buffer. This +does not have to be a complete line; to display a complete line, a newline +must be appended explicitly. Note that the text survives between calls to zle +and hence must be removed explicitly by assigning an empty value to the +parameter. +) +vindex(POSTDISPLAY) +item(tt(POSTDISPLAY) (scalar))( +Text to be displayed after the end of the editable text buffer. This +does not have to be a complete line; to display a complete line, a newline +must be prepended explicitly. Note that the text survives between calls to +zle and hence must be removed explicitly by assigning an empty value to the +parameter. +) vindex(RBUFFER) item(tt(RBUFFER) (scalar))( The part of the buffer that lies to the right of the cursor position. |