Category Archives: Emacs

Emacs Package manager

Emacs Package manager

I have a long history with text editors and I have always been facinated with the different flavours of interfaces and capabilities. After working my way through ED and then VI Emacs was a bit of a revalation. I found myself idle for a few minutes this morning and thought I would do some editor maintenance and install haml-mode into my copy of Emacs. While surfing around I came across the Emacs Lisp Package Archive which made the installation a breeze and I then found myself installing all sorts of other additions that might be useful in the future.

ELPA installation instructions (copied from the ELPA site)

1
2
3
4
5
6
7
8
(let ((buffer (url-retrieve-synchronously
           "http://tromey.com/elpa/package-install.el")))
  (save-excursion
    (set-buffer buffer)
    (goto-char (point-min))
    (re-search-forward "^$" nil 'move)
    (eval-region (point) (point-max))
    (kill-buffer (current-buffer))))

Paste the code into a scratch buffer, and then execute the code in the buffer. Once complete run the package-list-packages command. In the packages buffer ‘i’ marks an entry for installation and ‘x’ installs the marked packages.

Share

Blogging from emacs

After installing
WebloggerMode some time ago I had not gotten around to trying it out so I thought I would take it for a spin with this entry.

Nothing earth shattering but the interface is clean and I have a personal commitment to reaquaint myself with the power of emacs.

Installation and setup is straightforward although I would like a little more 1,2,3 style instructions. But then there are only 3 basic instructions before this point:

1. Install
2. Configure
3. Create first entry

As an update the post is submitted as draft. I then pulled the entry back down with weblogger-fetch-etries which then provides a number of additional fields.

Share