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
set wrap
I use match ErrorMsg '\%>80v.\+' which will highlight anything over 80 chars with red.
match ErrorMsg '\%>80v.\+'
I put that command in my python.vim and ruby.vim under ~/.vim/after/ftplugin/.