vote up 8 vote down star
1

I've used Slime within Emacs as my primary development environment for Common Lisp (or Aquamacs on OS X), but are there other compelling choices out there? I've heard about Lispworks, but is that [or something else] worth looking at? Or does anyone have tips to getting the most out of Emacs (e.g., hooking it up to the hyperspec for easy reference)?

Update: Section 7 of Pascal Costanza's Highly Opinionated Guide to Lisp give one perspective. But to me, SLIME really seems to be where it's at.

flag

10 Answers

vote up 10 vote down check

There are some flashier options out there, but I don't think anything's better than Emacs and SLIME. I'd stick with what you're using and just work on pimping your Emacs install.

link|flag
vote up 2 vote down

The most pleasant way I have found of accessing the Common Lisp standard is through Info. Build and install the Info files as described on http://www.phys.au.dk/~harder/dpans.html. Then add the following to your ~/.emacs.el:

(require 'info-look)

(info-lookup-add-help
 :mode 'lisp-mode
 :regexp "[^][()'\" \t\n]+"
 :ignore-case t
 :doc-spec '(("(ansicl)Symbol Index" nil nil nil)))

You can look up the symbol at point with C-h S.

link|flag
vote up 1 vote down

I believe this question may help you find your answer.

link|flag
vote up 1 vote down

There is a Lisp IDE available with Clozure Common Lisp (née OpenMCL). It looks fine, although I like SLIME better. Clozure, however, is the bees knees: an order of magnitude faster compilation and execution on a 64 bit Intel Mac, and a better "user experience" in general. Look around on common-lisp.net for Rittweiler's new slides on using SLIME, they're very helpful.

link|flag
vote up 0 vote down

Depends on the which Lisp, you may be referring to Common Lisp.

link|flag
vote up 0 vote down

A very minimalistic but useful Lisp IDE for Windows is "LispIDE" available from:

http://www.daansystems.com

  • Supports CLISP and SBCL.
  • Starts up with REPL very quickly.
  • Syntax highlighting.
  • Download includes CLHS and CLtL2 as CHM help files.
  • Press F1 to bring up CLHS help. CLtL2 under Help menu.
  • Keyboard shortcuts for "Send to Lisp" and "Macro Expand".

Simple, effective and free.

link|flag
vote up 0 vote down

I use Vim, the Ion3 window manager and terminal windows and enjoy it very much.

link|flag
vote up 0 vote down

I'll second the clozure common lisp IDE on MacOS/X. You'll remember it fondly if you ever used Macintosh Common Lisp. They are working to improve it, and, bonus, you get compete source.

In addition, if you just want lispish, dr-scheme has quite the IDE as well.

link|flag
vote up 0 vote down

look for Allegro CL at FRANZ.COM

link|flag
vote up 0 vote down

"LispIDE" ... great.. excellent, you may take this

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.