Hacker News new | ask | show | jobs
by BeetleB 3023 days ago
>but I'm not really sure I understand why a text editor would need all these things?

It doesn't. But thinking of Emacs as a text editor is like thinking of Firefox as a document displayer.

>Like, why do you want an HTTP client in your text editor when you already have wget, curl, nc, etc available in your shell?

There's a reason to prefer using these in Emacs over the shell. It is because Emacs is a better embodiment of the UNIX philosophy than the UNIX shell itself is:

>Make each program do one thing well. To do a new job, build afresh rather than complicate old programs by adding new "features".

A lot of standard UNIX tools are laden with features. But well, that could be said of Emacs as well.

>Expect the output of every program to become the input to another, as yet unknown, program.

Emacs does this much better than the UNIX shell, in my experience. The level of consistency you see in the Emacs ecosystem just doesn't exist in UNIX. With UNIX, you really are feeling like you are gluing stuff together. With Emacs, it feels much more natural.