Learning Emacs Lisp: the fast track!

Ops I did it again. Although I repeatedly said I didn’t love emacs Lisp, I finally managed to learn it.
So I want to share with you my tips, to help entering in the Emacs Lisp world in a fast, fun and easy way.

First of all Lisp is a very elegant language, as you may expect.
Lisp is so elegant you will have to take your time to learn it, because it is a bit cryptic. To make things even worst, emacs function names are less than intuitive. The solution anyway is here: cookbooks!

The following web page will show you a set of tips for making small steps into emacs lisp. The scratch buffer will execute the code interactively (just press C-j)

The second thing you must learn to master is the C-h f (describe-function) key bindings, because will help you a lot. Take the time to study the code of the basic functions you find in your way.

Learn by Example

The best way to start is to use ert unit testing framework which is built in in the last version of Emacs…
[plain](ert-deftest testname ()
(let (…)
….
(should ….)
))[/plain]
To start playing, see the example on this web page http://steve-yegge.blogspot.it/2008/01/emergency-elisp.html

Lisp magical constructs
To understand better lisp, take a look to this “useless” library http://www.emacswiki.org/emacs/SyntacticSugar
which simply create “alias” to the same function (!)

Other Tips

This web page will teach you a bunch of other tips I find very userful.

 

Exception handling

unwind-protect is the emacs lisp function for “try……finally” idiom. It is very important to use it because will avoid you fatal error on the go. Anyway I like also this form

(condition-case nil
(progn
(do-something)
(do-something-else))
(error
(message "oh no!")
(do-recovery-stuff)))

Userful links