标签: vim
我在.vimrc中进行了一些自定义,以突出显示超过80个字符的文字:
.vimrc
" highlight text over 80 columns wide highlight OverLength ctermbg=red ctermfg=white guibg=#592929 match OverLength /\%81v.\+/
这有时会妨碍,所以理想情况下我希望能够通过几个键快速切换或关闭此行为。我怎样才能在vim?
vim
答案 0 :(得分:1)
这已在Vim: toggle highlighting of long lines中得到彻底解答,它引导您使用map执行此操作。
map