diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-02-27 11:56:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-27 11:56:30 +0100 |
commit | 9d3370a14429587303d3abe6d4ece71342f5e4b5 (patch) | |
tree | abff6a0068dc2809c3f43a4af3b13fe037498b42 /runtime/doc/usr_05.txt | |
parent | 7dd2b0b79a34a7b3560971bc7c1466621134e469 (diff) | |
download | rneovim-9d3370a14429587303d3abe6d4ece71342f5e4b5.tar.gz rneovim-9d3370a14429587303d3abe6d4ece71342f5e4b5.tar.bz2 rneovim-9d3370a14429587303d3abe6d4ece71342f5e4b5.zip |
vim-patch:c51cf0329809 (#17530)
Update runtime files.
https://github.com/vim/vim/commit/c51cf0329809c7ae946c59d6f56699227efc9d1b
Diffstat (limited to 'runtime/doc/usr_05.txt')
-rw-r--r-- | runtime/doc/usr_05.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/usr_05.txt b/runtime/doc/usr_05.txt index f93a221e43..b1ef563e43 100644 --- a/runtime/doc/usr_05.txt +++ b/runtime/doc/usr_05.txt @@ -131,7 +131,7 @@ it worked before Vim 5.0. Otherwise the "Q" command starts Ex mode, but you will not need it. > - vnoremap _g y:exe "grep /" . escape(@", '\\/') . "/ *.c *.h"<CR> + vnoremap _g y:exe "grep /" .. escape(@", '\\/') .. "/ *.c *.h"<CR> This mapping yanks the visually selected text and searches for it in C files. This is a complicated mapping. You can see that mappings can be used to do |