Java additions

This commit is contained in:
Eryn Wells 2013-08-07 22:43:53 -07:00
parent de3819015e
commit e1ef52f53f
3 changed files with 39 additions and 67 deletions

4
vimrc
View file

@ -97,7 +97,7 @@ set wildmode=longest,list
" Wild ignores
" build artifacts
set wildignore+=*.o,*.pyc,*~,.lo
set wildignore+=*.o,*.pyc,*~,.lo,*.class
set wildignore+=*.db,*.pdf,*.jpg,*.jpeg,*.png,*.gif
set wildignore+=.git,env,migrations
@ -296,7 +296,7 @@ if has('autocmd')
" \ :call ReloadSnippets(expand('%:t:r'))
" Clean whitespace before saving: Python, C, HTML, and Objective-C
autocmd BufWritePre *.py,*.h,*.c,*.html,*.m,*.mm,*.cc,*.hh
autocmd BufWritePre *.py,*.h,*.c,*.html,*.m,*.mm,*.cc,*.hh,*.java
\ call <SID>strip_trailing_whitespace()
endif