diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-07-12 19:27:14 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-08-03 14:01:53 +0200 |
commit | d2f81330247ee060d557330b2716ccea8f789a50 (patch) | |
tree | cfc05f6f29b46d280a0207d71df51d8cda9b402e /runtime/doc/vim_diff.txt | |
parent | 214b125132778c5d51d4d7e673d31a9be835e150 (diff) | |
download | rneovim-d2f81330247ee060d557330b2716ccea8f789a50.tar.gz rneovim-d2f81330247ee060d557330b2716ccea8f789a50.tar.bz2 rneovim-d2f81330247ee060d557330b2716ccea8f789a50.zip |
docs: misc
Co-authored-by: Kevin Pham <keevan.pham@gmail.com>
Diffstat (limited to 'runtime/doc/vim_diff.txt')
-rw-r--r-- | runtime/doc/vim_diff.txt | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 1230769c1a..be187f842a 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -115,13 +115,15 @@ DEFAULT MAPPINGS Nvim creates the following default mappings at |startup|. You can disable any of these in your config by simply removing the mapping, e.g. ":unmap Y". -- |Y-default| -- |i_CTRL-U-default| -- |i_CTRL-W-default| -- |CTRL-L-default| -- |&-default| -- |v_#-default| -- |v_star-default| +- Y |Y-default| +- <C-U> |i_CTRL-U-default| +- <C-W> |i_CTRL-W-default| +- <C-L> |CTRL-L-default| +- & |&-default| +- # |v_#-default| +- * |v_star-default| +- Nvim LSP client defaults |lsp-defaults| + - K |K-lsp-default| DEFAULT AUTOCOMMANDS *default-autocmds* @@ -511,6 +513,9 @@ Mappings: Motion: The |jumplist| avoids useless/phantom jumps. +Performance: + Folds are not updated during insert-mode. + Syntax highlighting: syncolor.vim has been removed. Nvim now sets up default highlighting groups automatically for both light and dark backgrounds, regardless of whether or @@ -732,9 +737,6 @@ Options: *'ttytype'* *'tty'* weirdinvert -Performance: - Folds are not updated during insert-mode. - Plugins: - logiPat |