Created
February 2, 2012 04:22
-
-
Save jlfwong/1721455 to your computer and use it in GitHub Desktop.
Java ftplugin for working with eclim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Stick this in ~/.vim/ftplugin/java.vim | |
" eclim goodness | |
call SuperTabSetDefaultCompletionType("<c-x><c-u>") | |
augroup eclim | |
autocmd! | |
autocmd BufWrite *.java :JavaImportMissing | |
autocmd BufWrite *.java :JavaImportClean | |
augroup END | |
nnoremap <buffer> <Leader>r :Java<CR> | |
nnoremap <buffer> <Leader>c :Javac<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment