aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-08-14 01:40:21 +0300
committerZyX <kp-pav@yandex.ru>2017-08-14 01:40:21 +0300
commit5c60cd2abb74a14a99bea87e0b76e4f35a50bb07 (patch)
treec28c2cdc5377dde163edecf7361927c8fff4f90c
parent0571b8cb0eba8f8ec10b33910bb5164a123af44d (diff)
downloadrneovim-5c60cd2abb74a14a99bea87e0b76e4f35a50bb07.tar.gz
rneovim-5c60cd2abb74a14a99bea87e0b76e4f35a50bb07.tar.bz2
rneovim-5c60cd2abb74a14a99bea87e0b76e4f35a50bb07.zip
doc: State that it is called for new *displayed* input
-rw-r--r--runtime/doc/eval.txt15
1 files changed, 8 insertions, 7 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 279c5e4442..4e8b6527eb 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -4744,13 +4744,14 @@ input({opts})
sections must be ordered so that next hl_start_col is greater
then or equal to previous hl_end_col.
- Highlight function is called at least once for each new input
- string, before command-line is redrawn. It is expected that
- function is pure for the duration of one input() call, i.e. it
- produces the same output for the same input, so output may be
- memoized. Function is run like under |:silent| modifier,
- additionally any errors from function cause it to be no longer
- executed for the duration of the current input() call.
+ Highlight function is called at least once for each new
+ displayed input string, before command-line is redrawn. It is
+ expected that function is pure for the duration of one input()
+ call, i.e. it produces the same output for the same input, so
+ output may be memoized. Function is run like under |:silent|
+ modifier, additionally any errors from function cause it to be
+ no longer executed for the duration of the current input()
+ call.
Currently coloring is disabled when command-line contains
arabic characters.