在 vim 中跳转到相对编号打开的行
在正常情况下,可以查看行号并使用 [number]G 转到该行。但我喜欢在设置relativenumber 的情况下工作。缺点是我无法再通过查看显示的行号来跳转到行。
是否可以重新定义 [number]G 的行为来解决此问题?另外,是否可以在relativenumber打开的情况下将当前行号设置为1而不是0?又如何呢?
In a normal situation it's possible to look at the line number and use [number]G to goto that line. But I like to work with the setting relativenumber on. The disadvantage is that I can't jump to lines anymore by looking at the displayed line number.
Is it possible to redefine the behavior of [number]G to fix this? Also, would it be possible to make the current line number 1 instead of 0 with relativenumber on? And how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需
[number]j
或[number]k
即可执行此操作。You can simply
[number]j
or[number]k
to do this.