vote up 7 vote down star

When working in an actual development environment with other people, is Emacs still a valid IDE? I work with Eclipse with my co-workers, but I'm curious if there are any benefits whatsoever of using Emacs over Eclipse.

flag

79% accept rate
2  
I'm sometimes tempted to retag questions about editor choices as "religion" ... – mkoeller Mar 27 at 12:52
@mkoeller: and it's pretty similar when talking about IDE choices. Now when you compare an editor (that can be turned into an IDE) with an IDE (that contains an editor) things start to get messy ;-) – Joachim Sauer Mar 27 at 13:10

10 Answers

vote up 13 vote down check

The developers in our group use all manner of editors: emacs, vim, eclipse, netbeans, etc. I'm happy to have people use whichever tool makes them most personally productive. The tools that make collaboration within the group possible (source control, build scripts, project trackers) can be accessed easily by any of these editors. It makes no difference to me HOW the developers tie-in to the collaboration process so long as they DO.

EDIT: I was going to post links to articles on using emacs as a java IDE... there are a lot of very good tools. Here is one question from stackoverflow: http://stackoverflow.com/questions/41056/best-java-tools-for-emacs. But, honestly, type "emacs java ide" into google and you'll get lots of hits. YMMV, but people use emacs for java all the time.

link|flag
1  
Jarret, you're off topic. The question is: "is emacs useful compared to eclipse" for – Alex Black Sep 16 at 18:40
vote up 8 vote down

For normal Java work Eclipse is much better, because it offers much better Java support.

Occasionally I switch to Emacs temporarily (Open With in Eclipse) when I have to do something repetitive with keyboard macros, or if I want to cut / paste rectangles.

link|flag
Agreed. Emacs can't do renamings, refactorings, code browsing, or auto-completion nearly as well as Eclipse, and these things make you much more efficient in Java, even if you're constantly hitting C-x and C-c at inappropriate times. – Chris Conway Mar 27 at 13:09
Personally, I do it exactly opposite. When I'm just mashing out a first pass on code, I use emacs since I can get code out faster in it. Then, later on when I'm refactoring & cleaning up, I switch to eclipse for the nice refactoring tools. – JordanG Mar 28 at 5:38
vote up 7 vote down

I am using EMACS, and I tried eclipse before.

Current, I use emacs as a over-all solution, just like OS, I use emacs to view directory, open file, edit doc, but I'm not encourage you to use emacs in real production.

emacs is a tool for expert user who really know what they want and have the ability to do the hard configuration work.

eclipse is easier to use and understand, and have lots of plug-in, and easy to use for a team.

after all, I still suggest you to try emacs, think in the powerful way to work.

link|flag
Eclipse has less depth in editing than Emacs, but much more depth in Java support (e.g. refactoring). I wouldn't say Eclipse is easier, rather the areas where you can be an expert are different. – starblue Mar 27 at 14:58
vote up 2 vote down

Emacs can have pretty good IDE-like features (e.g. CEDET + JDEE), but its main advantage is that you can edit text really, really efficiently. If you're proficient enough with emacs, you will be able to spew out text fast enough that lack of whatever IDE feature(s) becomes negligible.

link|flag
vote up 1 vote down

I switched from Emacs to Eclipse several years ago. It is a much better overall environment for doing Java development, especially if you are doing JEE. The plugins available (in my case WSAD and then RAD) certainly facilitated more efficient write, build, and test cycles with the built in test environment.

I still use Emacs, though not as much. If I just want to take a quick look at a file, that is not part of a project for instance, I can do this easily in emacs without any configuration concerns for projects and workspaces of Eclipse. Also, you can open and view just about anything, quickly. So it still has it's uses, but I just don't use it as part of my normal dev cycle.

link|flag
vote up 1 vote down

I find some features of Eclipse indispensible. Being able to quickly bring up a list of available methods from an object is great. I must use this feature dozens of times daily. The 'Open Type' command is also very useful.

The only situation in which I would edit .java files with Emacs or Vim would be if I needed to make a (very) small change to a file on a remote server onto which I happen to be SSH'd.

If I had to pick one Java IDE, I'd pick Eclipse!

link|flag
vote up 1 vote down

I use emacs for all my coding, and I'm a full-time java programmer. I used to be an Eclipse guy, but I use it less and less. Nowadays it's mostly just for hairy refactorings or when I want to use the integrated debugger (which admittedly is quite nice).

And no, I don't miss Eclipse's code completion. I used to think that it'd be impossible to code java without it, but apparently I was wrong. :)

If you really feel you need an IDE, but still want to use emacs there's always JDEE, I guess. You get a class browser, command completion and some other nice things, but I've found I don't really need that. I've written a bunch of small elisp utilities for doing maven builds, running unit tests and so on, and that's all I really need.

So yes, emacs is useful for coding java. At least for me.

link|flag
vote up 0 vote down

I use Emacs for some things, (g)Vim for others. I open Notepad++ once in a while, mostly because it's easier to read code there, and because it makes nicer hardcopy. I use JEdit when I'm writing XSLT, and recently I worked in an environment in which microEmacs was the best editor I could install.

When I'm writing Java, though, I use Eclipse or NetBeans. I don't have enough room in my head to retain all the state I would have to maintain to write Java with Emacs.

link|flag
vote up -1 vote down

This is just my opinion, not an answer: NO.

link|flag
vote up -3 vote down

Emacs is a texteditor. Eclipse also got a texteditor, but lots of very useful stuff too, so Emacs looks like a subset of Eclipse to me. Some people are very productive programming only with texteditors, but i think there's absolutely no argument to not use an IDE like Eclipse.

link|flag
Show me something that Eclipse can do, but Emacs can't. – Svante Mar 27 at 13:32
Code suggestion, compile check und highlightning while typing, debugging capabilities, refactoring, to you need more? – Mork0075 Mar 27 at 13:59
@Mork0075: emacs can do all these things... some may require additional modules on a language-by-language basis, but that hardly makes it any different than eclipse's plug-in driven architecture, now does it? – Jarret Hardie Mar 27 at 16:15
If you mean something like JDEE (jdee.sourceforge.net) this does not have much in common with Emacs in my opinion. After integrating Emacs into a Java Development Enviroment doesnt mean that Emacs is a full featured IDE comparable with Eclipse perhaps ;) – Mork0075 Mar 27 at 20:36

Your Answer

Get an OpenID
or

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