www.flickr.com

Tuesday, January 02, 2007

Emacs Tip: Install Ispell on Windows

One little hiccup with running Emacs on Windows is that, by default, the spell checker does not work. The reason is simple enough, Emacs relies on an external program called ispell to do the spell checking work, and ispell is typically not installed on Windows.

Installing ispell isn't too difficult, though it's not trivial either. The first requirement is that Cygwin needs to be installed, or at least, the cygwin1.dll shared library needs to be somewhere accessible. Once Cygwin is installed, you can download ispell. See the README file for instructions. Do make sure to follow the instructions! Especially, do not forget to set the variable DICTDIR. It's easy with the instructions, but skipping a step can result in odd errors.


Afterwards, ispell can be invoked on the current Emacs buffer with the simple command M-x ispell.

4 comments:

  1. Dude. As far as I can tell, ispell is outdated. You can use both ispell and the newer aspell WITHOUT cygwin by putting this in your init file:

    (setq-default ispell-program-name “c:\\Program Files\\Aspell\\bin\\aspell.exe”)

    Haven't fully tried it out but seems to be working.

    ReplyDelete
  2. Thanks Uriel. Good to know that there's an easier way to do this now.

    ReplyDelete
  3. May I ask where is the init file ?

    ReplyDelete
  4. Honestly, it's been so long since I've used Windows, that I can't recall where the init file is stored. My best guess is to check your home directory.

    ReplyDelete