最新消息:

vim: hlsearch

vim niuge678 461浏览 0评论

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

与本文相关的文章

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址