I have noticed that some vim distributions like janus automagically add some dots/marks for ruby indenting e.g.
.....module Models
.......class User < Base
I did try some ruby .vimrc examples for ruby but I don’t seem to find something similar.
Is there a simple way to have this without having to use a full vim distribution e.g. with a simple .vimrc configuration ?
Try with:
set list listchars=tab:\ \ ,trail:·, it will show all trailing tabs and spaces with dots.