Showing trailing spaces in vim

后端 未结 5 1616
生来不讨喜
生来不讨喜 2021-01-30 16:19

I\'ve set the following options in .vimrc

set listchars=tab:▸\\ ,trail:·
set list

And expected to see dots in those places where spaces are use

5条回答
  •  悲哀的现实
    2021-01-30 17:11

    You should check this link. I'm using the match command solution :

    :highlight ExtraWhitespace ctermbg=red guibg=red
    :match ExtraWhitespace /\s\+$/
    

    This page also provides list based solutions which I haven't personally tried.

提交回复
热议问题