Emacs Documentation

Eric Raymond (esr) is a hero of mine. He writes great software and has done yeoman work for Emacs, including the just completed conversion of the repository to Git. Recently, he proposed that Emacs abandon info in favor of a Web-based documentation system using asciidoc as the source format.

Esr is a believer in browser-based documentation. A few years ago he made a similar pitch for replacing man pages with Web-documentation. I don’t know how much uptake that effort enjoyed but I, for one, am still happily using man. The reason is simple: when I’m working and need some documentation, the last thing I want to do is change out of my editor to the browser. I want to pop up the documentation in another buffer, read the information I need, and get on with my work. It’s not just an Emacs thing; back then I was still using Vim and its built-in man page reader.

It’s no surprise, then, that I’m not in favor of this latest move either. But even on its own terms, esr’s proposal seems odd. Why get rid of texinfo in favor of asciidoc? If, as he says, texinfo is a barrier to entry for new hackers—something I find unlikely—why use asciidoc instead of the excellent built-in Org Mode? The answer appears to be that esr isn’t very familiar with Org Mode (although he has admitted he should learn more) and fears that it may not be up to producing a manual. Several of the posters pointed out that Org Mode has been used to write books and that it certainly is up to the task even if it hasn’t been used to produce any manuals yet.

Then RMS popped up defending the decision to use asciidoc and saying that he started to read the Org Mode documentation but it didn’t immediately say anything about producing manuals so he stopped reading. Really, all this seems bizarre. Esr and RMS are proposing a major change to how Emacs does documentation but seem unaware of a built in solution.

But that, as I say, is considering the proposal on its own terms. I do not agree that we should abandon info in favor of the Web, Org Mode, or anything else. I find the notion that info and texinfo are scaring away new developers silly and, really, insulting to younger developers. Esr may prefer reading documentation in a browser but many of us do not. Read the thread (warning: it’s long) and you’ll see that most of the commenters agree that the system’s not broken and doesn’t need fixing. Also be sure to check out David Kastrup’s description of what he was able to do with texinfo and info for the LilyPond documentation. It’s very impressive.

The sometimes heated arguments in the thread aside, reasonable people can take either side of the question. What do you think?

UPDATE: LWN has an excellent article on this debate.

Posted in General | Tagged | 9 Comments

Notes for Emacs N00bs

Anthony Tedjamulia has a nice post on What I Wish I’d Known About Emacs. If you’re an experienced Emacser, you won’t find much that you didn’t already know but if you’re just starting with Emacs it’s an excellent orientation. One nice thing is that it explains the terminology that Emacs uses. I remember that I kept getting hung up on “yank” because its meaning was exactly the opposite of the way Vim uses it.

Another point that Tedjamulia makes is that Emacs is not so much an editor as a programming environment. Although Tedjamulia doesn’t say so explicitly, that environment is, in fact, a sort of Lisp Machine environment. He compares it to MS Office, an unsavory comparison to be sure but one not without merit. The idea is that Emacs provides a framework in which you or others can write applications. Notice that those applications don’t necessarily involve editing text. You can play music, chat on IRC, handle your email and many other things all because Emacs provides a framework which makes it easy to implement these things.

The final point that Tedjamulia makes that’s worth mentioning is that Emacs is completely transparent. As he puts it, everything is discoverable. You can easily query the documentation for any function, variable, or key sequence. If that doesn’t answer your question, you can follow the link to the source and see for yourself what a function or variable does. Everything is there for you to learn from or extend.

Tedjamulia’s post is, I think, a valuable resource for those new to Emacs. If you’re just starting out, or want to, give this post a read.

Posted in General | Tagged | Leave a comment

Vertically Aligning Code

Terence Eden has a post in which he argues that code should be vertically aligned. Doing so, he says, improves readability and makes the code easier to understand. As an example, he offers

int robert_age = 32;
int annalouise_age = 25;
int bob_age = 250;
int dorothy_age = 56;

versus

int robert_age     = 32;
int annalouise_age = 25;
int bob_age        = 250;
int dorothy_age    = 56;

as an example of improved readability.

Folks can differ as to whether readability really is improved but the arguments against vertical alignment boil down to

  • It can mess up diffs
  • We don’t have the tools to make it easy

In the comments, Helge mentions that

git diff -w

ignores white space thus solving the first problem. It also has the -b option that ignores white space changes. Even if you aren’t using git, GNU diff also has the -w and -b options that do the same thing.

The second problem is what interested me. I kept thinking, “Just use align-regexp and be done with it.” Most times you don’t even have to highlight the code—Emacs will do the right thing by itself. That’s when I remembered that not everyone uses Emacs. Too bad. Use whatever editor you like but don’t complain we don’t have the right tools to do alignment. We have them; some just choose not to use them.

If you want another view, here it is.

Posted in Programming | Tagged | 1 Comment

N00bris

Jean-Philippe Paradis nails it

Lispers see this all the time with n00b proposals to get rid of those pesky parentheses.

Posted in General | Tagged | Leave a comment

Pinning Packages

I recently learned something useful from Timo Geusch in a post on pinning a package to a specific archive. It turns out that Emacs 24.4 has a new variable, package-pinned-packages, that tells the package system to get certain packages from a certain archive and no others. The variable is a list of cons cells of the form (PACKAGE . ARCHIVE). For example, if you want to get the package htmlize from marmalade only, you would add the cons

(htmlize . "marmalade")

to the package-pinned-packages list.

Probably the most important use of this is to specify that some packages be loaded only from melpa-stable. For example, if you want to ensure that you get the stable versions of smex, yasnippet, and typo you would add

(setq package-pinned-packages '((smex . "melpa-stable")
                                (yasnippet . "melpa-stable")
                                (typo . "melpa-stable")))

to your .emacs or init.el file.

This is really convenient and much easier than the workarounds that were necessary before.

Posted in General | Tagged | Leave a comment

Markdown Gets Code Blocks

I don’t use Markdown because, as an Emacs user, I have access to the superior Org Mode. Still, if you’re not an Emacs user, Markdown provides a subset of Org Mode’s capabilities and is definitely an excellent piece of software (although it does have some problems).

One of the most useful facilities that Org Mode provides is code blocks—what they used to call Babel—that allows you to embed executable code in an Org document, execute it, and automatically embed the results in the document. I’ve written about it many times.

Now Vittorio Zaccaria is bringing code blocks to Markdown with exemd. It’s a preprocessor for Markdown that executes embedded code blocks and inserts the results into the document. The project is still evolving and some of the planned functionality is still not implemented but what he has so far is impressive. More plugins need to be written and PDF output is still unimplemented but the project is off to an excellent start.

A real problem with exemd is that it lacks the integration that Org Mode has with its host editor. How could it be otherwise? After all, Markdown works with any editor so unless every editor builds in an interface this will continue to be a problem. Another issue is that, for the same reasons, there is not a central place to get those plugins; there’s no universal package system. Zaccaria can address the last problem by hosting or listing those modules on the Exemd site.

One further possible problem is that, as far as I can see, the only way to get exemd is through npm, which leads me to believe that it may be available only for Linux. I hope I’m wrong about that because it looks like a really useful package that users on all platforms could benefit from.

I’m really happy to see this capability added to Markdown. It’s extraordinarily useful and encourages reproducible research by making it easier. I hope this project keeps going and succeeds.

UPDATE: npm is available for all platforms so, happily, exemd should be usable by all Markdown users.

Posted in General | Tagged , | 1 Comment

EmacsGolf: Changing Times to 24-Hour Notation

Here’s a problem I dealt with recently. We have a tab-delimited data file that has time as one of the fields. The times are in the U.S. 12-hour format with a trailing ‘a’ for AM or a ‘p’ or PM. We want the times to be in 24-hour format. The file looks like

# -*- Mode: text; indent-tabs-mode: t -*-
11/13/07        7:14a   232     74      70
11/13/07        8:05a   340     85      60
11/13/07        3:47p   927     79      66
11/14/07        7:58a   109     79      72
...

and we want it to look like

# -*- Mode: text; indent-tabs-mode: t -*-
11/13/07        07:14   232     74      70
11/13/07        08:05   340     85      60
11/13/07        15:47   927     79      66
11/14/07        07:58   109     79      72
...

Note that we want each time to contain exactly 5 characters (including the colon). None of the other fields should be changed.

The file is over 1,100 lines long so editing each line by hand is not feasible. How would you do this as efficiently as possible?

Posted in General | Tagged | 6 Comments

The Legacy of Emacs

Bernd Haug has an interesting take on what the real legacy of Emacs is:

Posted in General | Tagged | Leave a comment

SBCL 1.2.6 Is Released

The new Steel Bank Common Lisp, version 1.2.6, is out and available at the usual place. As always, it built and passed the regression tests without problem.

As usual, there are a couple of enhancements and some bug fixes. All the details are on the NEWS page so go there for the details.

I really love SBCL. It’s a great Common Lisp implementation that has monthly releases, is very stable, and is very easy to compile and install. If you’re on Linux, you can download a binary. If not, it’s easy to compile—see the Getting Started page for details.

Posted in Programming | Tagged , | Leave a comment

Animated Paredit Guide

Dan Midwood has posted an excellent animated paredit guide. The post consists of animated gifs and supporting text. Midwood’s experience mirrors mine. For a long time he used only the most basic paredit features but then decided to optimize his workflow by learning a few more paredit commands.

He mentions that because paredit works by maintaining a syntactically correct source tree, it often happens that it becomes seemingly impossible to edit the text and beginners just give up and go away. This certainly happened to me but I don’t feel bad because even the formidable Magnar Sveen had problems learning paredit. Once you get over the initial hurdles, though, you won’t want to live without it.

Midwood’s post tries to take you a little further than just the basics so that you can make even better use of paredit. My only complaint is that the gifs speed by and you have to watch them several times to see what’s going on. On the other hand, the keystrokes are displayed, which makes things easier to follow. This is a really useful post and if you use paredit or think you might want to, you should definitely check it out.

Posted in Programming | Tagged | 2 Comments