On Thu, 5 Jan 2006, Davidlohr Bueso A. wrote:
Hello,
First of all I would like to say I am totally new to Lisp and SLIME. I installed (official debian unstable packages) slime, cl-swank, cl-asdf, sbcl and clisp. I followed the manual for installing SLIME, so in my ~/.emacs I added:
(setq inferior-lisp-program "/usr/share/emacs21") (require 'slime) (slime-setup)
When I edit a .lisp file I enter slime-mode, however, I cannot do anything with it, every time I type a command I get a "Not Connected" message.
Could anyone tell me what I am doing wrong (or not doing at all)? I have googled and asked on IRC.
Please CC to my email address, I am not subscribed to this list.
Start slime with M-x slime
Andras
_______________________________________________ slime-devel site list slime-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/slime-devel
* Davidlohr Bueso A. [2006-01-06 01:09+0100] writes:
Hello,
First of all I would like to say I am totally new to Lisp and SLIME. I installed (official debian unstable packages) slime, cl-swank, cl-asdf, sbcl and clisp. I followed the manual for installing SLIME, so in my ~/.emacs I added:
(setq inferior-lisp-program "/usr/share/emacs21") (require 'slime) (slime-setup)
You should set inferior-lisp-program to the external Common Lisp program, not Emacs. E.g. /usr/bin/sbcl.
When I edit a .lisp file I enter slime-mode, however, I cannot do anything with it, every time I type a command I get a "Not Connected" message.
You can start and connect to the external Lisp with `M-x slime'.
Helmut.