Vim 中增量搜索的 Emacs 风格突出显示

发布于 2024-10-14 03:23:08 字数 257 浏览 5 评论 0原文

在 Vim 中,有没有办法在搜索时启用所有匹配项的即时突出显示?

如果我启用 incsearch 并输入“/something”,它将仅突出显示第一个匹配项。如果我启用 hlsearch 并输入“/something”,则在按 Enter 键之前不会发生任何事情(它只会突出显示之前的搜索)。

在 emacs 中,第一个匹配项将突出显示,并且(稍有延迟后)屏幕上的所有其他匹配项将以不同的颜色突出显示,在扫描一段代码中的匹配项时几乎可以立即提供反馈。

In Vim, is there a way to enable on-the-fly highlighting for all matches when searching?

If I enable incsearch and type "/something" it will highlight the first match only. If I enable hlsearch and type "/something", nothing happens until I press enter (it only highlights the previous search).

In emacs the first match will be highlighted, and (after a slight delay) all other matches on the screen are highlighted in a different color, giving almost instant feedback when scanning for matches in a piece of code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

︶葆Ⅱㄣ 2024-10-21 03:23:08

没有回答您的问题,但也许这篇 Wikia 帖子可以提供帮助?

引用那篇文章:

将以下代码放入您的 vimrc 中,或创建文件
~/.vim/plugin/autohighlight.vim (Unix) 或
$HOME/vimfiles/plugin/autohighlight.vim (Windows) 包含
下面的脚本。然后重新启动 Vim。

要自动突出显示当前单词,请输入 z/。要关闭,
再次输入 z/

" 空闲时突出显示光标下单词的所有实例。
“在研究奇怪的源代码时很有用。
" 输入 z/ 可打开/关闭突出显示。
nnoremap z/ :if AutoHighlightToggle()set hlsendif;
功能!自动突出显示切换()
  让@/=''
  如果存在('#auto_highlight')
    啊!自动突出显示
    奥集团!自动突出显示
    设置更新时间=4000
    echo '突出显示当前单词:off'
    返回0
  别的
    augroup 自动突出显示
      啊!
      au CursorHold * let @/ = '\V\<'.escape(expand(''), '\').'\>'
    澳大利亚集团结束
    设置更新时间=500
    echo '突出显示当前单词:ON'
    返回1
  恩迪夫
结束功能

Doesn't answer your question, but maybe this Wikia post can help?

Quote from that post:

Put the following code in your vimrc, or create file
~/.vim/plugin/autohighlight.vim (Unix) or
$HOME/vimfiles/plugin/autohighlight.vim (Windows) containing the
script below. Then restart Vim.

To automatically highlight the current word, type z/. To turn off,
type z/ again.

" Highlight all instances of word under cursor, when idle.
" Useful when studying strange source code.
" Type z/ to toggle highlighting on/off.
nnoremap z/ :if AutoHighlightToggle()<Bar>set hls<Bar>endif<CR>
function! AutoHighlightToggle()
  let @/ = ''
  if exists('#auto_highlight')
    au! auto_highlight
    augroup! auto_highlight
    setl updatetime=4000
    echo 'Highlight current word: off'
    return 0
  else
    augroup auto_highlight
      au!
      au CursorHold * let @/ = '\V\<'.escape(expand('<cword>'), '\').'\>'
    augroup end
    setl updatetime=500
    echo 'Highlight current word: ON'
    return 1
  endif
endfunction
新人笑 2024-10-21 03:23:08

将其添加到您的 .vimrc

hi Search guifg=black guibg=#C6C5FE gui=BOLD ctermfg=black ctermbg=cyan cterm=BOLD

当然,您可能想更改颜色以满足您的需要。

Add this to your .vimrc

hi Search guifg=black guibg=#C6C5FE gui=BOLD ctermfg=black ctermbg=cyan cterm=BOLD

Of course, you might want to change the colors to suit your needs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文