在 vim 中搜索,一行中只有 1 个匹配项

发布于 2024-12-08 23:38:17 字数 98 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

奈何桥上唱咆哮 2024-12-15 23:38:17
/pattern you want to match/1

这告诉 vim 在找到下一个匹配之前向下移动一行。

/pattern you want to match/1

this tells vim to move down a line before finding the next match.

挽清梦 2024-12-15 23:38:17

您可以使用 .* 遵循您的模式,这将使模式与找到它的行的其余部分相匹配。下一个模式的搜索在最后找到的模式的结束之后开始。

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.

咿呀咿呀哟 2024-12-15 23:38:17

尝试 :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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文