Vim:在行尾插入
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在最后一个字符之前插入,请使用
$i
。显然,这不是一个足够常见的情况,不足以保证单键命令。To insert before the last character, use
$i
. This isn't a common enough case to warrant a single-key command, apparently.没有使用一次击键的内置命令,但如果您经常使用它,请考虑创建一个地图:
或者您可以在地图中使用
A
来达到相同的效果。There isn't a built-in command that uses one single keystroke, but If you use it often consider creating a map:
Alternatively you can use
A<left>
in your map to achieve the same effect.