在gvim中搜索,忽略特殊字符

5hcedyr0  于 2022-11-11  发布在  其他
关注(0)|答案(2)|浏览(186)

如何在gvim中搜索字符串而忽略其中的所有特殊/正则表达式字符?
类似于:
/<It doesn't matter what is here>

bihw5rsg

bihw5rsg1#

您可以使用\V作为搜索字符串的开头,以关闭正则表达式搜索:

/\V<It doesn't matter what is here>

这是非常nomagic模式(与非常magic模式相反)。参见:h \V
请注意,您仍然需要使用\\来转义\

tzxcd3kk

tzxcd3kk2#

使用?search_without_need_to_escape_slash搜索
参考编号:https://vim.fandom.com/wiki/Search_without_need_to_escape_slash

相关问题