aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2022-03-12 17:56:53 -0700
committerGitHub <noreply@github.com>2022-03-12 17:56:53 -0700
commitf291a0339c186cf6eb83174e88029555b3c2631a (patch)
treecd6d8582a3a8c27e5b7c08b7bb3a0281408b83ad /runtime
parent356631cba0e8dc413202f4bc874cb7f204056bae (diff)
downloadrneovim-f291a0339c186cf6eb83174e88029555b3c2631a.tar.gz
rneovim-f291a0339c186cf6eb83174e88029555b3c2631a.tar.bz2
rneovim-f291a0339c186cf6eb83174e88029555b3c2631a.zip
fix: use normal! <C-L> in default <C-L> mapping (#17695)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/vim_diff.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index 5ea6a9c5dd..7f944bbfe6 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -84,7 +84,7 @@ 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".
>
nnoremap Y y$
- nnoremap <C-L> <Cmd>nohlsearch<Bar>diffupdate<CR><C-L>
+ nnoremap <C-L> <Cmd>nohlsearch<Bar>diffupdate<Bar>normal! <C-L><CR>
inoremap <C-U> <C-G>u<C-U>
inoremap <C-W> <C-G>u<C-W>
<