Vim:垂直线表示一行代码缩进了多少?
有没有办法让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这个插件可以满足您的要求。
https://github.com/nathanaelkane/vim-indent-guides
I think this plugin does what you want.
https://github.com/nathanaelkane/vim-indent-guides
首先,尝试以下操作:
参见
:help 'listchars'
您还可以使用(本例中为 80)在任何所需的列上放置一条垂直线:
从 vim 7.3 开始,您可以使用
设置 colorcolumn=80
(简称set cc=80
)。as a start, try this:
see
:help 'listchars'
You can also place a vertical line at any desired column using (80 in this case):
As of vim 7.3, you can use
set colorcolumn=80
(set cc=80
for short).