vote up 2 vote down star
3

Hi there

Some time ago, I've heard what a great tool Emacs can be. I've read some papers about it and some watched some video too. I've read that emacs is great not only for developers but for usual users too...so i decided to start learning how to use it and wok with it.

The problem is that I'm a MS Windows user and I learn in my spare time PHP and C(I also did some products on those languages, but i still considering myself in learning stage).

Another problem is that I learn alone (no friends around to ask/learn from them, programming related stuff).

Can you give me some tips about how to use those type of tools(especially those written for gnu/unix) with "poor" GUI but rich features? Do you recommend to use the specific windows written applications only and forget about those which come from GNU?

flag

78% accept rate

closed as subjective and argumentative by Moayad Mardini, Kinopiko, Mark Rushakoff, SilentGhost, dmckee Nov 6 at 16:27

6 Answers

vote up 3 vote down check

IMHO anyone who is serious about being a programmer or any kind of a power user should learn one of the Big Two editors: vim and emacs. These editors are available on all major (and many minor) operating systems and one or both will always be installed on any system you're going to encounter.

Another problem is that I learn alone (no friends around to ask/learn from them, programming related stuff).

This is a solvable problem, unless you live in Antarctica. Join some local users groups in areas that interest you and learn from the people you meet there. (And even then, frequenting a site like Stack Overflow will be of great benefit to you.) Additionally, check out the many threads here about books to read.

link|flag
vote up 2 vote down

I have been using emacs for over 10 years, but I am what you would call a basic emacs user. I barely make any changes to my .emacs file (basically a config file for emacs) and I am pretty lazy about learning shortcuts (I type a lot of meta x and then the the name of what I am looking for (meta is typically the escape key, and you type that, then x, then you can type the beginning of a command and hit tab for auto complete suggestions).

The reason I have been using it is that it works best when you don't want to bother with the mouse, which is a serious speed killer.

Things you should learn:

I would recommend using a version of emacs that comes with all the common modes (enviornments for working with php, js, C++, ...). This way you don't have to do any configuration yourself.

I use aquamacs for OS x, but there should be others on other os's

link|flag
many thx for your tips about using emacs with common modes installed. Does anyone know such a version for Windows OS? – dole doug Nov 6 at 9:27
vote up 5 vote down

Emacs is the most advanced editor out there. It's not even an editor, but rather more like an editor construction kit that comes with a half-finished editor.

I use Emacs because there's no other editor in the world that allows me to

  • work with so many languages and text formats
  • adapt it so easily to new environments
  • use it as a Lisp REPL, for exploratory programming
  • so easily connect to external systems (even on remote servers) to evaluate expressions, such that I can test the code that I'm programming merely by highlighting it and hitting a key combination
  • work on remote files, or ssh to a remote workstation and start emacs in the terminal, or connect to any number of revision control systems, or work in Windows, Mac, Linux or just about anything else; emacs sees no network or platform boundaries
  • use the most comprehensive and powerful suite of text-editing functions in the world; emacs can literally draw with text

There is no comparison between Emacs and any Modern IDE in existence today. There are some things that an IDE is going to do better, like be pretty, provide better support for the mouse, and re-factor ridiculously verbose and inflexible computer programming languages that have to resort to lots of design-patterns. But a person that knows Emacs and Lisp well enough is going to be able to set up development environments that make him or her far more productive than the non-Emacs users. This is especially true when you're developing applications in new environments or paradigms. For example, I develop Perl and XQuery applications that run against a Mark Logic server. Of all the people I've ever encountered, I can develop those applications faster than anyone else. There is no IDE for developing Perl and XQuery applications that run against a native XML database, but Emacs has allowed me to quickly create an environment that will likely not exist in the form of an IDE for years.

The reason Emacs doesn't provide excellent mouse support (not as many tool bars, etc), is that using the mouse actually slows you down considerably. The reason Emacs's user interface looks archaic is that nothing works better when you get past a certain productivity point. To a newcomer, these attributes can seem off-putting. But you should see how I can arrange and navigate code on Emacs's screens.

Emacs makes you incredibly more productive, but it's not easy to learn. I've known people that used Emacs for 10 years before they really discovered what makes it different from the other editors. You have to go into Emacs with the understanding that if you don't learn a great deal of it, it's not going to help you; even a lame IDE will work better for you if you can't keep your hands off the mouse and you can't learn Lisp.

To be fair, I've also never met (or even read about) anyone who said that they were done learning Emacs. It's too vast. It has too many contributors. It's been around too long. The best anyone can do is to learn enough Emacs that their general productivity sees a real jump.

If you want to compare Emacs with anything, then compare it to Vim. Nothing else even comes close.

link|flag
vote up 4 vote down

I'll speak to Emacs and let you generalize for other tools.

I taught my four sons the power and pleasure of Emacs when they were in high school and middle school. Three of them have become C/Java software engineers and to this day swear by Emacs as a tool of choice. The approach is to start at the basic front page and follow the many, many help suggestions/tutorials. The built-in "INFO" system is invaluable for learning the gory details (and supports way more than just Emacs). Then drill into the menus to learn what each does. With Emacs, there is abundant samples of Emacs lisp scripts and libraries to learn from on the net. Now, with Stack Overflow and Superuser.com available, when you run into code that does not work due to some misunderstanding, it is very easy to get answers to get you back on track. So have a ball.

-pmr

link|flag
vote up 0 vote down

Emacs is essentially a highly configurable, programmable text editor. Up until a few years ago, when there were hardly any good and cheap IDEs available, it was fantastic to be able to create an environment in Emacs which could do text highlighting, auto-indenting, build management and display a Mayan calendar. However, it's essentially a text-mode editor with rather little GUI.

These days, most people feel more comfortable working in a full-fledged IDE which contains not just these capabilities but also (depending on language) refactoring, database binding, UML design... all kinds of stuff that works best in a "real" graphical environment. I used to be a fan of Emacs but these days I prefer Eclipse.

Eclipse is very powerful but for most languages, there already exists a very competent IDE with a shorter learning curve.

link|flag
vote up 2 vote down

My personal opinion on this one is that you should at least get a grip of emacs so as to be able to use it.

From what you're saying I take it that you are rather early in your dev career, therefore there will probably be many different opportunities for you in the future, which you should not miss just because of a lack of a basic skill. And by that I do not mean that Emacs is a basic skill. Far from it. What I am trying to say here is that you should have the ability to use tools such as Emacs in order to be flexible enough to work in any platform, and don't stick to platform dependent tools.

link|flag

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