在 vim 中搜索,一行中只有 1 个匹配项
我想在 vim 中搜索一个模式,如果一个模式在一行中出现多次,那么它应该在该行中仅搜索该模式 1 次,然后匹配下一行。
有什么办法可以做到吗?
谢谢,
I want to search a pattern in vim such that if a pattern appears multiple times in a line then it should search that pattern only 1 times in that line and after it match next line.
Is there any way to do it?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这告诉 vim 在找到下一个匹配之前向下移动一行。
this tells vim to move down a line before finding the next match.
您可以使用
.*
遵循您的模式,这将使模式与找到它的行的其余部分相匹配。下一个模式的搜索在最后找到的模式的结束之后开始。You can follow your pattern with
.*
which will cause the pattern to match the remainder of a line where it is found. The search for the next pattern starts after the end of the last found pattern.尝试 :set nogdefault
因为:
'gdefault' *'gd'* 'nogdefault' *'nogd'*
'gdefault' 'gd' 布尔值(默认关闭)
打开时,“:substitute”标志 'g' 默认打开。这意味着一行中的所有匹配项都会被替换,而不是一个。当为“:substitute”命令赋予“g”标志时,这将切换所有或一个匹配的替换。
Try :set nogdefault
Because:
'gdefault' *'gd'* 'nogdefault' *'nogd'*
'gdefault' 'gd' boolean (default off)
When on, the ":substitute" flag 'g' is default on. This means that all matches in a line are substituted instead of one. When a 'g' flag is given to a ":substitute" command, this will toggle the substitution of all or one match.