dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 3205b6c40276d3b511bda34dd0db6bad32c57e76
parent 63e607cd68d75d3c9992cfbc0debed25d299dfae
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed, 13 Feb 2013 11:39:56 -0800

Prevent OverLength matching from stomping on ExtraWhitespace matching

Diffstat:
M.vim/.vimrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.vim/.vimrc b/.vim/.vimrc @@ -51,8 +51,8 @@ if &t_Co > 2 || has("gui_running") " Highlight over-length lines highlight OverLength ctermbg=red ctermfg=white guibg=#592929 - au BufEnter,InsertLeave * match OverLength /\%81v.\+/ - au BufEnter,InsertLeave *.java match OverLength /\%101v.\+/ + au BufEnter,InsertLeave * 2match OverLength /\%81v.\+/ + au BufEnter,InsertLeave *.java 2match OverLength /\%101v.\+/ endif endif