Vim:垂直线表示一行代码缩进了多少?

发布于 2024-12-05 15:47:18 字数 54 浏览 2 评论 0原文

有没有办法让 Vim 显示垂直线,以便在视觉上更容易看到一行代码缩进了多少个制表位(或空格)?

Is there a way to get Vim to show vertical lines that make it visually easier to see how many tab stops (or spaces) a line of code has been indented?

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

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

发布评论

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

评论(2

安人多梦 2024-12-12 15:47:18

我认为这个插件可以满足您的要求。

https://github.com/nathanaelkane/vim-indent-guides

I think this plugin does what you want.

https://github.com/nathanaelkane/vim-indent-guides

¢好甜 2024-12-12 15:47:18

首先,尝试以下操作:

set list listchars=tab:»·,trail:·,extends:#

参见 :help 'listchars'

您还可以使用(本例中为 80)在任何所需的列上放置一条垂直线:

highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%81v.\+/

从 vim 7.3 开始,您可以使用 设置 colorcolumn=80 (简称 set cc=80)。

as a start, try this:

set list listchars=tab:»·,trail:·,extends:#

see :help 'listchars'

You can also place a vertical line at any desired column using (80 in this case):

highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%81v.\+/

As of vim 7.3, you can use set colorcolumn=80 (set cc=80 for short).

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