Vim:在行尾插入

发布于 2024-12-04 15:47:14 字数 217 浏览 2 评论 0原文

Vim 中是否有在行尾插入某些内容的键?它类似于 A,只不过它会插入到最后一个字符之前,而不是之后。

例如,Python 中的一个用例是:

if ((a and b) or c:

您想要在冒号之前插入缺少的括号。当您想要在分号之前插入某些内容时,C 语法语言中也有类似的用例。

Is there a key to insert something at the end of the line in Vim? It would be similar to A, except it would insert before the last character, not after it.

A use case is for example in Python:

if ((a and b) or c:

and you want to insert the missing parenthesis before the colon. There are similar use cases in C-syntax languages when you want to insert something before the semi-colon.

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

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

发布评论

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

评论(2

尐籹人 2024-12-11 15:47:14

要在最后一个字符之前插入,请使用 $i。显然,这不是一个足够常见的情况,不足以保证单键命令。

To insert before the last character, use $i. This isn't a common enough case to warrant a single-key command, apparently.

难忘№最初的完美 2024-12-11 15:47:14

没有使用一次击键的内置命令,但如果您经常使用它,请考虑创建一个地图:

nnoremap Q $i

或者您可以在地图中使用 A 来达到相同的效果。

There isn't a built-in command that uses one single keystroke, but If you use it often consider creating a map:

nnoremap Q $i

Alternatively you can use A<left> in your map to achieve the same effect.

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