diff options
author | Peter Stephenson <pws@zsh.org> | 2017-03-03 10:18:46 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-03-03 10:18:46 +0000 |
commit | 67c5d83df33cf46e5bf0d2f90bbc0f994e93f938 (patch) | |
tree | 10e9dad2de3454133aaef332d820e74a46b927ac /Doc/Zsh | |
parent | 0697c45ab38f60f9cb80e0c4be3d0eb23acb0d30 (diff) | |
download | zsh-67c5d83df33cf46e5bf0d2f90bbc0f994e93f938.tar.gz zsh-67c5d83df33cf46e5bf0d2f90bbc0f994e93f938.tar.xz zsh-67c5d83df33cf46e5bf0d2f90bbc0f994e93f938.zip |
40702: new KEYS_QUEUED_COUNT ZLE variable
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/zle.yo | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo index d68365b94..b65e3be64 100644 --- a/Doc/Zsh/zle.yo +++ b/Doc/Zsh/zle.yo @@ -864,6 +864,12 @@ vindex(KEYS) item(tt(KEYS) (scalar))( The keys typed to invoke this widget, as a literal string; read-only. ) +vindex(KEYS_QUEUED_COUNT) +item(tt(KEYS_QUEUED_COUNT) (integer))( +The number of bytes pushed back to the input queue and therefore +available for reading immediately before any I/O is done; read-only. +See also tt(PENDING); the two values are distinct. +) vindex(killring) item(tt(killring) (array))( The array of previously killed items, with the most recently killed first. @@ -919,7 +925,8 @@ item(tt(PENDING) (integer))( The number of bytes pending for input, i.e. the number of bytes which have already been typed and can immediately be read. On systems where the shell is not able to get this information, this parameter will always have a -value of zero. Read-only. +value of zero. Read-only. See also tt(KEYS_QUEUED_COUNT); the two +values are distinct. ) vindex(PREBUFFER) item(tt(PREBUFFER) (scalar))( |