How to show vertical line to wrap the line in Vim?

前端 未结 5 1881
醉话见心
醉话见心 2021-01-29 22:26

I\'m interested in finding a way to show a vertical line at column 80 in Vim (not GVim).

I\'ve used set wrap, but I just want to show a vertical line so I c

5条回答
  •  故里飘歌
    2021-01-29 22:40

    There is another way to notify about the long line.

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

    Vim 80 column layout concerns

提交回复
热议问题