在 Vim/Vi 中,如何将光标移动到上一个单词的末尾?

发布于 2024-10-19 11:01:22 字数 172 浏览 6 评论 0原文

在 Vim 的正常模式下:

  • e 转到下一个单词的末尾
  • w 转到下一个单词的开头
  • b 转到下一个单词的开头前一个单词

如何将光标移动到前一个单词的末尾

In Vim's normal mode:

  • e goes to the end of the next word
  • w goes to the beginning of the next word
  • b goes to the beginning of the previous word

How do you move the cursor to the end of the previous word?

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

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

发布评论

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

评论(4

枕梦 2024-10-26 11:01:22

不幸的是,它不是一个键...但我认为 ge 就是您正在寻找的。

Unfortunately it's not a single key... but ge is what you're looking for, I think.

待天淡蓝洁白时 2024-10-26 11:01:22

尝试ge

ge                      Backward to the end of word [count] |inclusive|.

                                                        *gE*
gE                      Backward to the end of WORD [count] |inclusive|.

Try ge:

ge                      Backward to the end of word [count] |inclusive|.

                                                        *gE*
gE                      Backward to the end of WORD [count] |inclusive|.
初雪 2024-10-26 11:01:22

如 VIM 手册(第 03.1 节)所示,您可以使用 ge 转到上一个单词的末尾

as seen on VIM manual (section 03.1), you can use ge to go to the end of previous word

卷耳 2024-10-26 11:01:22

您可能还想执行这些操作以转到单词前面的空格(ge 之后的一个字符:(两者都只有 2 个键)

  1. FSpace 会将您带到前一个单词之后的空格
  2. Bh 在大多数情况下也会这样做,

但例外情况是 。在行的开头,在这种情况下

  1. k$ 会在 3 个按键中执行类似的操作

You may also want to do these to go to the space preceding a word (one character after ge: (both are only 2 keys)

  1. FSpace will take you to the space after the previous word
  2. Bh will also do that, in most cases.

The exception is when you are at the beginning of a line, in which case

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