set hlsearch 始终高亮
set nohlsearch 回车后,高亮就没有了
取消高亮
nmap <leader>hl :let @/ = ""<CR>
1、:let一个普通变量,:set一个vim内部变量。
2、在命令中的搜索(/、:substitute 等)内容会改变“上次使用的搜索内容”。(它保存在/寄存器中,用 :echo @/ 可以输出它里面的内容)
简单的文本变化可以通过 . 重做。(它保存在 . 寄存器,用 :echo @. 可以输出它的内容)
3、:let @/ = 'register'
我们按 n 的时候就会跳转到单词"register" 出现的地方。
4、To clear the last used search pattern:
:let @/ = ""
This will not set the pattern to an empty string, because that would match everywhere. The pattern is really cleared, like when starting Vim.
转载请注明:牛哥678 » vim: hlsearch