查找最接近的“.”的出现位置在VIM中

发布于 2024-12-05 11:54:34 字数 279 浏览 0 评论 0原文

在 VIM 中如何找到下一个点“.”使用命令f?我尝试了 f. 但它不起作用。

在此处输入图像描述

In VIM how do you find the next dot "." using the command f? I tried f. and it doesn't work.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

成熟稳重的好男人 2024-12-12 11:54:34

f. 只要它在同一行,就对我有用。如果您想跨行搜索,则必须使用 /\. 通过 / 进行搜索。

f. works for me as long as its on the same line. If you want to search across lines you'll have to search with / using /\..

杯别 2024-12-12 11:54:34

请记住,f 仅适用于当前行,而 / 用于向前搜索。 / 使用 RE,因此您必须转义 .,因此按键序列 /\. 就可以解决问题。

Remember that f is only for the current line, and / is for searching forward. / uses REs, so you must escape ., thus the key sequence /\.<ENTER> does the trick.

憧憬巴黎街头的黎明 2024-12-12 11:54:34

也许f\.

你可能需要转义。因为它是一个特殊字符,可以匹配任何字符。

Maybe f\.

You may need to escape . since it is a special character which will match any character.

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