diff options
author | yamatsum <42740055+yamatsum@users.noreply.github.com> | 2022-05-13 09:28:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 08:28:10 +0800 |
commit | 233c41cb8cfe1aa5a8520fe6104adacc53c0ece2 (patch) | |
tree | 7f516336f4032e85ee2e9a0fdcfda64693807414 /runtime/doc/vim_diff.txt | |
parent | b96037e42de42b504dd6f02d03de608d1b2a32c5 (diff) | |
download | rneovim-233c41cb8cfe1aa5a8520fe6104adacc53c0ece2.tar.gz rneovim-233c41cb8cfe1aa5a8520fe6104adacc53c0ece2.tar.bz2 rneovim-233c41cb8cfe1aa5a8520fe6104adacc53c0ece2.zip |
feat(defaults): search selection by * and # in visual mode (#18538)
Diffstat (limited to 'runtime/doc/vim_diff.txt')
-rw-r--r-- | runtime/doc/vim_diff.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 1a3d6022ca..a3de8c6574 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -87,6 +87,8 @@ of these in your config by simply removing the mapping, e.g. ":unmap Y". 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> + xnoremap * y/\V<C-R>"<CR> + xnoremap # y?\V<C-R>"<CR> < Default Autocommands ~ *default-autocmds* |