2
1
I'm currently using the following listchars I found on vim casts:
set listchars=tab:▸\ ,eol:¬
I'd like to make tab be ▸ followed by 3 spaces, but I can't seem to get it to work. I've tried the following:
set listchars=tab:▸\ \ \ ,eol:¬
set listchars=tab:▸\ ,eol:¬
set listchars=tab:▸<Space><Space><Space>,eol:¬
All throw errors. Is this possible?