Vim在折行(Wrap line)前能否显示行号?

发布于 2022-08-29 20:05:23 字数 458 浏览 8 评论 0

在Vim中设置了

set wrap
set linebreak

做到了软折行(soft-wrap),但是折行前没有行号。

wrapped_line
设置了:
set cpo+=n
set showbreak==>
可以得到下面的效果:
请输入图片描述
但还是没有行号。因为老师要求用Latex写论文,自己又习惯了Vim,所以希望可以在折行的地方也加上行号,方便阅读。

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

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

发布评论

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

评论(1

来日方长 2022-09-05 20:05:23

If you want Vim to show display lines, not the actual, physical lines, that's not possible. It also doesn't make sense, since no movement command except gj / gk works on display lines, and you cannot use them in :[range].

If you want wrapped/broken lines to actually be new lines, why don't you actually make them new lines?

gqq reformats the current paragraph using the textwidth settting
To get automatic formatting going:

set fo=tcrwa textwidth=80
Now, whenever you're type your text will wrap around. On auto-wrap, a trailing space is left on the previous line indicating it isn't the end of a paragraph yet.

Vim line numbers on display lines

我是勤劳的搬运工!

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