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
And expected to see dots in those places where spaces are used for tabulation in the code (I use spaces, not tabs)
Actually this is the other way round, tab
option is used to display a character when a tab character is inserted (\t) instead of spaces.
And trail
is use to show trailing spaces at the end of lines.
You seem to have single empty line with trailing spaces, and dots are correctly displayed.
If you are only using spaces tab
option is not used or displayed.