How to do whole-word search similar to “grep -w” in Vim

后端 未结 3 632
青春惊慌失措
青春惊慌失措 2020-12-13 05:54

How do I do a whole-word search like grep -w in Vim, which returns only lines where the sought-for string is a whole word and not part of a larger word?

3条回答
  •  执笔经年
    2020-12-13 06:29

    One can use 'very-magic' \v to simplify the command:

    /\v
    

    As mentioned in comments, \v indicates that all alphanumeric characters have special meaning hence one needs to enter only < and > rather than escaping them with \< and \>.

提交回复
热议问题