Why I Use Emacs
Written:
Prologue
I'm a dinosaur.
I started using computers in the mid-to-late 1980s. By the early 1990s, I was teaching elementary school kids basic computer science, and selling my services as a "freelance computer geek" to various adults who were utterly bewildered by these big, beige boxes that were taking over their lives.
By the time I left high school in 1995, I was working full time at a publishing company as a chimeric-hybrid of systems administrator, internal desktop support, outside customer tech support, programmer, and web developer.
This isn't as weird as it might sound if you were born in this century. See, absolutely no one knew what to do with the Web back then. Did it belong to IT? The advertising and sales department?
Chances are, if you were the only person at a small company even vaguely interested in this stuff, and you appeared even slightly competent with computers, you were almost certainly nominated to the position of "Webmaster" and the Internet became your problem.
"Let's give the enthusiastic teenager unfettered access to our systems, and sole responsibility over our online presence," was not seen as unreasonable back when Clinton was in charge.
And so there I was, logged into a machine running BSDI Unix, trying to build sites and utilities without really knowing how.
In the course of these efforts, I learned to use GNU Emacs.
That was thirty years ago. And I'm still not convinced it wasn't a terrible mistake.
This is the story of how I came to use Emacs, and why I still use it today. At the end, I offer a cautionary tale for those of you thinking of going down this road yourself.
The "Swiss Army Chainsaw" of text editors
Emacs is a text editor in precisely the same way that a Mack Truck is a unicycle. This is partly because Emacs has very broad definitions of the words "text" and "editor". For instance, a calculator could be considered a "text editor" because numbers and symbols like "*" are displayed and entered as text.
Another part of the reason for Emacs's bewildering array of features is that it's built with an extension language called Emacs Lisp. This language lets you write everything from simple, "one-off" commands to full applications like double-entry bookkeeping tools and spreadsheets.
Want to organize your appointments and to-do lists? Want to calculate the Mayan date? Want to play Tetris or Pong?
You can do all of these things and more right inside of Emacs, and nevermind about why.
It starts with code...
The first text editors I used on UNIX were "ed" and "vi" and they were both inscrutable to me. Ed was a line editor which might have been legendary in the days of teletypes, but it was beyond baffling for me as someone who'd only ever used full-screen editors.
And vi? Well, the less said about that the better.
Shortly after I was hired at the publishing company, I discovered "pico" (the ancestor of today's "nano") and life was tolerable. The problem is that it had absolutely no knowledge of any of the code I was writing. It didn't automatically indent anything, had no syntax highlighting, and was generally a pain to deal with once my projects got larger and more involved.
I was building websites, so I had to use HTML. I also had to maintain and write CGIs, which were written in either Perl or C. And I also had to write my fair share of shell scripts and diddle config files like the local "sendmail.cf" which I still have nightmares about to this day.
After about a year of fighting with pico, and/or editing files locally and FTP-ing them up to the server, I learned about the existence of Emacs.
Emacs understood HTML, shell, Perl, and C. Similar commands worked in a similar way regardless of which type of file I used (for instance, "indent-region" worked sensibly regardless of the language), and I could tweak its configuration to fit my workflow.
It took me an afternoon to learn the basics of how to move around in Emacs, and maybe two days to get up to the speed I had with pico. After my first week, I was working much, much faster.
It grows with notes...
I mentioned my job description way back up at the top of this rant. What I didn't mention is that for much of the time I worked there, I answered to three different bosses.
I technically belonged to the IT department, and worked under the systems manager. But I also answered to the sales manager, because we were building and hosting websites for outside clients. But also, also I answered to the editor in chief because we were publishing our own stuff online.
A lot of bosses means a lot of meetings, conflicting instructions, and constantly-evolving priorities.
So, I had to keep notes.
And I kept those notes in Emacs using a combination of built-in features and my own hand-hacked Emacs Lisp. (This was before Org-mode was a thing.)
If I got a call, I had a set of commands bound to a few keystrokes which would let me log it, create a task (if needed), and jot down any pertinent details.
I had another set of commands which would let me see my tasks and to-dos, check them off, and keep a running summary of the work I did.
It was a cobbled-together mess, but it served me well.
Unfortunately, it was the beginning of the end. See, by this point, I was spending a considerable amount of time in Emacs. And during that time I was accumulating a lot of Emacs "state". Things analogous to clipboard history, and a running buffer of shell commands.
Because it's so easy to integrate tasks and programs within Emacs, its utility increases exponentially with each thing you can add to the mix. The less time you can spend switching between applications, the more time you can spend actually working.
Pretty soon, it became downright painful whenever I had to leave Emacs to accomplish something.
It metastasizes with email...
The killing stroke came when I decided to use Emacs to read mail.
I don't remember which email mode I used first, but I eventually settled on Gnus. And I used BBDB (the "Insidious, Big Brother Database") as my address book and contact manager.
I wrote several small hacks so that, if I got an email assigning me a task, I could hit a couple of keys and add that task to my to-do list. Then I had another command which would let me reply to the original email when I checked off the task as done.
By this point, I had a machine running FreeBSD at my house, so I was using Emacs at home and synchronizing my notes and mail between computers. I never quite got this working in a way that I liked, but it was "Good Enough" for my purposes back then.
Also by this point, the Emacs keybindings had become muscle memory. Whenever I had to do something simple like copy and paste in some other tool---or even move the cursor---my fingers jammed and I felt like one of those fabled monkeys at a typewriter.
It was all over. I was broken.
"War never changes"
If you read my rant about why I use Linux, you'll know that Emacs is the main antagonist in that story. Every time I switched to Windows, sooner or later, Emacs would suck me back in.
It's possible to run Emacs under Windows, and it's gotten easier over the years, but it's never been perfect. Whenever I've tried it, I kept running into all of these little annoyances and frustrations which interrupted my flow.
Today, I use Emacs for absolutely everything I can. And Org-mode is at the center of it all. Words cannot express how much easier things are since Carsten Dominick shared the first version of Org-mode back in the early 2000s. Where I used to have several dozen little hacks and custom commands to integrate everything, I basically have none, now.
Creating tasks from email messages in Gnus is trivial. I use EBDB for contact management now, and things more or less Just Work. I can create whole sets of interlinked notes and output them in whatever format I need with a minimum number of keystrokes.
Now that I'm back using Linux full time, and have once again found myself with multiple projects, I'm slowly expanding my use of Emacs to levels I haven't needed in years. I'll no doubt be writing Emacs Lisp again in the near future, and integrating the various scripts and tools I've been collecting recently. But, for now, my ".emacs" file is only about a hundred lines long and most of that is just basic config stuff.
A cautionary tale
The title of this rant is "Why I Use Emacs," and the answer to that question basically boils down to two things...
- I'm old and quite mad.
- I've found no other tool which allows me to do as much, as quickly, or as seamlessly as Emacs does.
The title of this rant is not "Why You Should Use Emacs," however.
In case it wasn't obvious, I think Emacs is absurd. It's an enormous, inexplicable, incomprehensible mess straight out of 1985. It doesn't work like any other software out there. Emacs Lisp is good, old fashioned nightmare fuel for anyone used to languages like Python or Javascript. It's not much better for people who've used other Lisps.
The best analogy I can think of is that Emacs is the "One Ring" of software. The more you use it, the more it takes hold of you. It gives you unnatural, long periods of productivity, but it poisons your mind and twists your soul.
I'm only half joking.
Somewhere around the year 2000, I decided to write an Emacs mode to manage and play my library of MP3 files. I basically hacked out an iTunes replacement in Emacs Lisp.
One part of this effort required me to scan through the library and pull the ID3 information out of every MP3. In doing this, I came to the conclusion that the available functions for reading the raw bytes of a file within Emacs were hideously slow.
So I wrote a custom function in C and patched my copy of Emacs which made everything an order of magnitude faster.
Then I wrote a set of commands to play, pause, and stop songs using mplayer running in the background. Then I re-wrote that code to be "player agnostic".
Then I worked for more than a week on an automatic rating system which assigned ratings to songs based on whether I skipped them, how often I skipped them, how many songs by that artist I listened to all the way through, etc.
This, I realize, was an insane thing to do.
Somewhere along the way, all of that code was lost. And since almost no one---including me---listens to MP3s anymore, it'd be useless anyway.
The point, though, is that sooner or later, if you learn Emacs, you might find yourself doing something equally insane and thinking it's perfectly reasonable.
You have been warned.