Vim:启动时光标位于缓冲区末尾

发布于 2024-11-04 11:30:57 字数 199 浏览 0 评论 0原文

我需要 vim 命令行选项来在 vim 启动时将光标移动到缓冲区的末尾。 我知道命令 G 和 $,但这不是我想要的。我希望这些命令在启动时自动发出,这样光标就会停在最后一个位置。

移动到最后一行已经可以了:

vim [filename] +

但这会将光标放在最后一行的开头。我希望它位于最后一个位置。

I need the vim command line options to move the cursor to the end of the buffer when vim starts.
I know about the commands G and $, but thats not what I am asking for. I want these commands to be automatically issued at startup, so the cursor ends up at the last position.

Moving to last line already works:

vim [filename] +

But that puts the cursor at the beginning of the last line. I want it to be at the last position.

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

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

发布评论

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

评论(1

标点 2024-11-11 11:30:57

最简单的方法:

 vim [filename] +"normal G$"

如果您希望它在没有命令行开关的情况下自动执行,您可以查看

 :autocmd BufRead *.ext norm! G$

Simplest approach:

 vim [filename] +"normal G$"

If you want it automatically executed without the commandline switches you can look at

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