Tag Archives: Emacs

The Emacs defadvice Macro

Evgkeni Sampelnikof has posted a nice introduction to defadvice. Emacs is all about having it your way and making it easy to do so. Very often it’s convenient to change the behavior of a built in command and since Emacs … Continue reading

Posted in Programming | Tagged | 1 Comment

So True

Don Taylor has it just right in this tweet. Well, maybe more than just a useful editor.

Posted in General | Tagged , | Leave a comment

Emacs vs. Vim

Steven Harms has1 a nice take on the Emacs/Vi holy wars. His idea is that the two sides are actually talking about different things. As we’ve discussed many times here, Emacs is about the ultimate customizable work environment. It provides … Continue reading

Posted in General | Tagged | 2 Comments

Emacs Configuration Organization

Sometimes I feel lonely. As many of you know, I keep my emacs configuration in a single init.el file1. Almost all the Emacs hackers that I respect have a complicated Emacs configuration split among multiple files. Finally, I’ve found someone … Continue reading

Posted in General | Tagged | 2 Comments

Opening the File at Point

Xah Lee has posted a nice bit of Elisp that allows you to open the file at point. Of course, Emacs has the ffap command to do that but, as Lee points out, there are a couple of (small) problems … Continue reading

Posted in General | Tagged | 1 Comment

Emacs Resources

The folks over at The Emacs subreddit have posted a very nice list of Emacs resources. They’ve got distributions, tutorials, starter kits, blogs, and references. They’re taking suggestions for additions so let them know if they missed anything important to … Continue reading

Posted in General | Tagged | Leave a comment

A Fast Open for init.el

Like me, Bozhidar Batsov is always fiddling with his init.el file. As a result, he’s devised a way to open it quickly. He wrote a bit of Elisp to load it and bound the Elisp to the simple key sequence … Continue reading

Posted in General | Tagged | 4 Comments

Key-Chord Mode

One of my favorite Emacs Rocks! videos is #7, Mind Exploded, in which Sveen talks about key-chord mode. Right after I saw the video, I loaded key-chord-mode, wrote about it, and have been using it ever since. I’m mentioning it … Continue reading

Posted in General | Tagged | Leave a comment

Emacs Hash Tables

One of the most useful data structures in Computer Science is the hash table. I’ve been using them for my entire career and have implemented close to a hundred instances in several languages. That’s not as necessary these days as … Continue reading

Posted in Programming | Tagged , | Leave a comment

Lexical Status on the Mode Line

Those of you who watched Nic Ferrier’s video on the difference between lexical and dynamic scope that I wrote about the other day may have noticed that his buffers indicated whether the buffer had lexical (LEX) or dynamic (DYN) scope. … Continue reading

Posted in General | Tagged | Leave a comment