Anyway to replace IntelliJ with vim/emacs + commandline?

☆樱花仙子☆ 提交于 2019-12-06 10:43:47

http://eclim.org promises to let you use Eclipse as a headless backend for vim. So you could work entirely in vim, but have all the Java features of Eclipse (which are probably similar enough to IntelliJ Idea to meet your needs).

(That said, I've never gotten it to work, but it sounds good every time I hear about it.)

I use JDEE with emacs + maven for builds (i use pom-parser.el to better integrate maven with emacs). To your points:

  • Auto-import of libraries
    • built into JDEE
  • Deployment of various services in Jetty with debugging (I use breakpoints a lot)
    • pretty sure you can deploy with maven + jdibug is a pretty decent emacs java debugger
  • Go to declaration, implementation, and tests.
    • TAGS is built into emacs, and GTAGS (aka global) is even better
  • JavaLint (?) basically something like PyFlakes for Java which shows warnings, errors in-line
    • you can use the eclipse batch compiler with flymake for on-the-fly compilation errors/warnings

You can try this IdeaVim. It's a Vim emulation plug-in for IDEs based on the IntelliJ platform.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!