Skip to content

Instantly share code, notes, and snippets.

@jlfwong
Created February 2, 2012 04:22
Show Gist options
  • Save jlfwong/1721455 to your computer and use it in GitHub Desktop.
Save jlfwong/1721455 to your computer and use it in GitHub Desktop.
Java ftplugin for working with eclim
" 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