Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use vim as my editor but I would like to get some of the same power of the IDE's for java when it comes to refactoring. Are there any commandline tools for refactoring java? I could probably hack something together using perl or vim scripting but if there is something already out there I'd rather use that.

share|improve this question
1  
What are you trying to achieve? – Peter Apr 1 '09 at 4:49
1  
mostly just renaming classes, methods and variables across files. That's my most common use case. – Jeremy Wall Apr 1 '09 at 13:31
are there any not open source command line tools? Any tools would be nice. – jedierikb Jan 6 at 18:32

closed as not constructive by WChargin, Jean-Bernard Pellerin, Andrew Barber May 18 at 5:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 3 down vote accepted

Check out jrefactory, and its command line option.

share|improve this answer
2  
It does almost nothing. – stepancheg Apr 1 '09 at 5:16
Yeah, not that sophisticated. I use IntelliJ and Netbeans, though. – Adeel Ansari Apr 1 '09 at 6:11

You could try Eclim. The goal of Eclim is to expose the functionality of Eclipse within Vim. In particular, there are a few commands for refactoring that are supported.

share|improve this answer

Code refactoring is a very context-sensitive and interaction-heavy process which doesn't lend itself very well to command-line interfaces. There can be dozens of types of refactorings you could do to a particular file (or set of files) and coming up with a vim interface to integrate all of this would be a major challenge.

If you want IDE functionality, why not use an IDE? Especially with Java, which lends itself so well to automatic refactoring by a complex piece of software like Eclipse.

share|improve this answer

I would strongly advise you to use VIM within an IDE (e.g. VIMPlugin and Eclipse - this is the combination I use and it works very well).

I used to be a VIM diehard. However the refactoring and code analysis within a modern IDE will far surpass any capabilities that VIM will provide (with plugins etc.).

Don't get me wrong. I love VIM and still use it for all sorts of stuff. Modern IDEs are the most productive route forward, however.

share|improve this answer
1  
I've tried those but the vim plugin doesn't give me any of the ide benefits. I might as well just use vim and the ide side by side. – Jeremy Wall Apr 11 '09 at 15:18
modern IDEs are to heavyweight. hate waiting almost a minute to open a large project or switch workspaces. – JoaoHornburg Jan 9 '12 at 18:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.