Skip to content

Commit

Permalink
Keep compatibility with Vim 7.2-
Browse files Browse the repository at this point in the history
In agreement with http://stackoverflow.com/a/3765575 a small update
before update my VIM version
  • Loading branch information
Moacir Rosa committed Mar 24, 2012
1 parent 0052890 commit cfaaeee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/gvimrc
Expand Up @@ -7,7 +7,12 @@ au FileType c,vim,lisp filetype indent on


"" General settings
set colorcolumn=80

if exists('+colorcolumn')
set colorcolumn=80
else
au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\%>80v.\+', -1)
endif

syntax enable

Expand Down

0 comments on commit cfaaeee

Please sign in to comment.