aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/options.txt
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-09-26 09:15:21 +0200
committerDaniel Hahler <git@thequod.de>2019-10-04 08:48:57 +0200
commita341eb608706e5e8ac691a7e8f4a9d314bafee20 (patch)
tree2a18de092fab445c378ce157962f6a41c65386f1 /runtime/doc/options.txt
parentcd73a0342a457c035b84e4406428ac30b30bf754 (diff)
downloadrneovim-a341eb608706e5e8ac691a7e8f4a9d314bafee20.tar.gz
rneovim-a341eb608706e5e8ac691a7e8f4a9d314bafee20.tar.bz2
rneovim-a341eb608706e5e8ac691a7e8f4a9d314bafee20.zip
win_line: update `w_last_cursorline` always
Vim patch 8.1.0856 (54d9ea6) caused a performance regression in Neovim, when `set conceallevel=1 nocursorline` was used, since then due to refactoring in 23c71d5 `w_last_cursorline` would never get updated anymore. Adds/uses `redrawdebug+=nodelta` for testing this. Fixes https://github.com/neovim/neovim/issues/11100. Closes https://github.com/neovim/neovim/pull/11101.
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r--runtime/doc/options.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 6b9f0380f6..8518d989d6 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -4588,9 +4588,11 @@ A jump table for the options with a short description can be found at |Q_op|.
larger scroll when drawing the message area (with
'display' msgsep flag active).
invalid Enable stricter checking (abort) of inconsistencies
- of the internal screen state. This is mosly
+ of the internal screen state. This is mostly
useful when running nvim inside a debugger (and
the test suite).
+ nodelta Send all internally redrawn cells to the UI, even if
+ they are unchanged from the already displayed state.
*'redrawtime'* *'rdt'*
'redrawtime' 'rdt' number (default 2000)
@@ -6916,7 +6918,6 @@ A jump table for the options with a short description can be found at |Q_op|.
global
The number of milliseconds to wait for each character sent to the
screen. When positive, characters are sent to the UI one by one.
- When negative, all redrawn characters cause a delay, even if the
- character already was displayed by the UI. For debugging purposes.
+ See 'redrawdebug' for more options. For debugging purposes.
vim:tw=78:ts=8:noet:ft=help:norl: