Tag Archives: Emacs

Narrowing the Fancy Way

Bruce Connor has an interesting new package up at GitHub. It’s the fancy-narrow package that, as he puts it, imitates narrow-to-region with more eye candy. At first I hated the idea. Being crotchety and grumpy, I’m inclined to treat “eye-candy” … Continue reading

Posted in General | Tagged | 5 Comments

Graphviz-dot Mode

When I want to draw structural directed graphs and network diagrams my first choice is always dot from the graphviz suite. The syntax is reasonably simple and the documentation has lots of examples to serve as go-bys. The other day, … Continue reading

Posted in General | Tagged | Leave a comment

Generating Graphs from an Org Mode File

I came across this tweet from Sacha Chua Mwahaha! Learned a lot about Org Babel + Graphviz on the way to making http://t.co/vB7qusi7RR . Used fill-region to wrap labels. #emacs =D — Sacha Chua (@sachac) March 20, 2014 and decided … Continue reading

Posted in Programming | Tagged , | Leave a comment

Emacs + Org Mode + Python

Back in July of last year I wrote about a great SciPy 2013 talk by John Kitchin on using Emacs, Org Mode, and Python for reproducible research. Today, I came across a reference to the talk, rewatched it, and enjoyed … Continue reading

Posted in General | Tagged , | Leave a comment

Reformatting JSON

A long time ago, I wrote about a way to prettify JSON. It had the advantage that it didn’t require you to load a heavyweight package such as js2-mode when all you wanted was to reformat some JSON in a … Continue reading

Posted in General | Tagged | Leave a comment

An Org Mode Cookbook

As you all know, I’m always talking up Org Mode and encouraging people to try it out. Org is so flexible that I spend a large percentage of my Emacs time in it. Where others might use a spreadsheet, I … Continue reading

Posted in General | Tagged , | 3 Comments

Emacs Focus Hooks

Bozhidar Batsov continues his excellent series on the upcoming Emacs 24.4 release with a post about new hooks for when frames go in or out of focus. As Batsov explains, that allows you to easily save the current file or … Continue reading

Posted in General | Tagged | Leave a comment

Variadic Comparisons in Emacs Lisp

One of the ways that Emacs Lisp differs from other Lisps is that it doesn’t support multiple arguments for comparisons. That is, you can’t write things like (if (= a b c) do-this else-do-that) or (when (< a b c) … Continue reading

Posted in Programming | Tagged | 1 Comment

Tutorial on Using Org Mode to Write Papers

Arne Babenhauserheide has posted another great how-to on using Org Mode. This time it’s on using Org to write technical papers for publication. As with his previous post that I wrote about, this one can be exported to HTML or … Continue reading

Posted in General | Tagged , | 1 Comment

Emacs 24.4 Desktop-Save-Mode

Like many Emacs users, I keep Emacs running continuously on my machines. To maintain the illusion of a constantly running Emacs, I use desktop-save-mode to maintain my configuration across invocations of Emacs or even reboots. Other than things like forgetting … Continue reading

Posted in General | Tagged | 1 Comment