编辑:对于Vim> = 7.3,请参阅answer
below。
原文链接:https://www.f2er.com/bash/392628.html不幸的是,vim没有机制在你想要的列之后显示垂直线(不像,TextMate)。但是,还有其他可视指示器,可用于显示线条太长。
这里是我使用(你可以把它放在你的.vimrc):
nnoremap <Leader>H :call<SID>LongLineHLToggle()<cr> hi OverLength ctermbg=none cterm=none match OverLength /\%>80v/ fun! s:LongLineHLToggle() if !exists('w:longlinehl') let w:longlinehl = matchadd('ErrorMsg','.\%>80v',0) echo "Long lines highlighted" else call matchdelete(w:longlinehl) unl w:longlinehl echo "Long lines unhighlighted" endif endfunction
因此,您可以使用< Leader&H;切换超过80的列被突出显示。