diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-05-05 00:32:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 00:32:23 -0400 |
commit | fdd328d568f7f1a11474fd59a429ace2720afa33 (patch) | |
tree | ff8df84a5d8f7909b8f6308c4f4280b82fb22ac5 /runtime | |
parent | f605eeec65a3f4923e02f97fcef713365cd2e588 (diff) | |
parent | 7b764bb43d9c45e04a8dbb0146b3529991007949 (diff) | |
download | rneovim-fdd328d568f7f1a11474fd59a429ace2720afa33.tar.gz rneovim-fdd328d568f7f1a11474fd59a429ace2720afa33.tar.bz2 rneovim-fdd328d568f7f1a11474fd59a429ace2720afa33.zip |
Merge #12230 'fix :terminal flicker with scrolloff'
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/nvim_terminal_emulator.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt index 55c5335a60..a96d118667 100644 --- a/runtime/doc/nvim_terminal_emulator.txt +++ b/runtime/doc/nvim_terminal_emulator.txt @@ -50,6 +50,13 @@ mode" in a normal buffer, such as |i| or |:startinsert|. In this mode all keys except <C-\><C-N> are sent to the underlying program. Use <C-\><C-N> to return to normal-mode. |CTRL-\_CTRL-N| +Terminal-mode forces these local options: + + 'nocursorline' + 'nocursorcolumn' + 'scrolloff' = 0 + 'sidescrolloff' = 0 + Terminal-mode has its own |:tnoremap| namespace for mappings, this can be used to automate any terminal interaction. |