diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-09-30 20:32:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-30 20:32:59 +0200 |
commit | 7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b (patch) | |
tree | cab676dfb3bf83cf243fc5e78bab2f435cde7517 /runtime | |
parent | dc52458522f23a0d50c7852af7191f7a92c263cb (diff) | |
parent | dd26bd59745c9fd358624312feb315ec0f106de8 (diff) | |
download | rneovim-7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b.tar.gz rneovim-7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b.tar.bz2 rneovim-7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b.zip |
Merge pull request #11121 from bfredl/invalidcell
screen: don't crash on invalid cells being recomposed (tui_raw_line assert)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index d87898bb89..6b9f0380f6 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4583,6 +4583,14 @@ A jump table for the options with a short description can be found at |Q_op|. RedrawDebugRecompose guibg=Red redraw generated by the compositor itself, due to a grid being moved or deleted. + nothrottle Turn off throttling of the message grid. This is an + optimization that joins many small scrolls to one + 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 + useful when running nvim inside a debugger (and + the test suite). *'redrawtime'* *'rdt'* 'redrawtime' 'rdt' number (default 2000) |