Is there any way to highlight multiple searches in (g)Vim?

前端 未结 10 845
青春惊慌失措
青春惊慌失措 2020-12-02 06:29

I want to search for multiple strings in Vim/gVim and have them highlighted in different colours. Is there a way of doing this with out-the-box Vim or with a plug-in?

10条回答
  •  温柔的废话
    2020-12-02 06:52

    For searching multiple strings in vim you can do like:

    /search1\|search2
    

    This works, and will highlight both search1 and search2, but with same color. You have to do this in vim editor.

提交回复
热议问题