如何在gvim中搜索字符串而忽略其中的所有特殊/正则表达式字符?类似于:/<It doesn't matter what is here>
/<It doesn't matter what is here>
bihw5rsg1#
您可以使用\V作为搜索字符串的开头,以关闭正则表达式搜索:
\V
/\V<It doesn't matter what is here>
这是非常nomagic模式(与非常magic模式相反)。参见:h \V。请注意,您仍然需要使用\\来转义\。
:h \V
\\
\
tzxcd3kk2#
使用?search_without_need_to_escape_slash搜索参考编号:https://vim.fandom.com/wiki/Search_without_need_to_escape_slash
?search_without_need_to_escape_slash
2条答案
按热度按时间bihw5rsg1#
您可以使用
\V
作为搜索字符串的开头,以关闭正则表达式搜索:这是非常nomagic模式(与非常magic模式相反)。参见
:h \V
。请注意,您仍然需要使用
\\
来转义\
。tzxcd3kk2#
使用
?search_without_need_to_escape_slash
搜索参考编号:https://vim.fandom.com/wiki/Search_without_need_to_escape_slash