vote up 0 vote down star

Am planning on learning how to use this editor since i was told that this was the "hacker's editor".

So what is so nice about emacs?

flag
You can write stuff for it in LISP – Artelius Nov 2 at 6:17
A little subjective, not to mention hard to qualify what makes an editor nice without knowing what other editors you like. This is also likely to divulge into a flamewar between vi and emacs. – James Deville Nov 2 at 6:18
@James: I dunno, SO users tend to be pretty objective and civil even faced with questions like this. – Artelius Nov 2 at 6:20
2  
Voting to close . this subject has already been beaten to death, resurrected, shot, resurrected again, and hang ... – ldigas Nov 2 at 6:27
1  
This should probably be community wiki then... – Paul McMillan Nov 2 at 6:27
show 1 more comment

closed as subjective and argumentative by Robert C. Cartaino, ldigas, Shay Erlichmen, LiraNuna, David Dorward Nov 2 at 7:30

5 Answers

vote up 1 vote down

I've been casual Emacs (GNU) user for many years. Never become super proficient but it is definitely my choice for Notepad-like app. Works flawlessly on all platforms (*nix, Win, Mac), works in a console and as UI. Learning curve is a little steep but it totally worth it. Eclipse (which is IDE I'm most frequently using) supports Emacs-like editing mode. Search-replace is mad and very convenient. Now - if you are a hacker - Emacs is just heavenly. There's always a plugin for practically anything and there are many-many people who don't use anything else. And then there's LISP. So - I say do it! It's no doubt very valuable skill to have

link|flag
vote up 2 vote down

It can be customized using the language of the 'gods', and can do everything except wash your socks and make coffee - wait? coffee? Mmmm.

Real programmers set the universal constants at the start such that the universe evolves to contain the disk with the data they want.

link|flag
i'm sure with the right coffee maker and laundry machine Emacs can do coffee and socks ;) – James Deville Nov 2 at 6:34
this is very funny, thanks for this! XD – paolo granada lim Nov 2 at 6:38
Man, we should so make this! emacsDirtyWashing.... – Edward Williams Nov 2 at 6:39
vote up 3 vote down

The fact that once you've been using it for a while, you can do pretty well anything you'd like to do with just a few keystrokes.

The fact that it's probably the most configurable bit of software on the planet.

The fact that it's been around for ~30 years, so there are an awful lot of useful tools built for it (major modes, handy little functions etc).

link|flag
vote up 2 vote down

Emacs takes GDB to the next level.. No other software integrates as well with GDB....

It's super configurable (for example, when I press F5 my emacs parses my Makefile, figures out what executable it creates, splits the window and runs gdb against it)...

link|flag
vote up 4 vote down

The ability to record and playback edits, macros, is my favorite feature. I haven't seen another editor that supports this as well, so I find myself switching back to emacs regularly even when I'm working in Eclipse, etc.

The coolness comes from the fact that every keyboard shortcut, every menu item, every ad-hoc expression/function evaluation is recorded. Throw in navigation at the syntax level (e.g. "forward one expression"), and recorded macros wind up being able to deal with a wide variety of variation of input data.

Then you can save the recorded macro to your config file with a name so that you'll always have it.

Honorable mention to (a) registers for having a copy/paste buffer for each key, and (b) much easier to extend than other editors once you grok some elisp.

link|flag
I haven't learned how to do it with Emacs, but I love the macro feature about Vim too!!! – James Deville Nov 2 at 7:03
F3 - start macro, F4 stop/run -- Now you know. – melling Nov 2 at 20:25

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