The Superior Lisp Interaction Mode for Emacs.

learn more… | top users | synonyms

0
votes
1answer
25 views

Error by installing of slime for the chicken scheme

After many lines of standard output text of chicken-install slime finally it has printed: /usr/bin/csi -bnq -setup-mode -e "(require-library setup-api)" -e "(import setup-api)"\ -e ...
1
vote
1answer
73 views

“Package GLUT does not exist”, even though cl-opengl installed in Arch Linux

I have emacs configured with SLIME for developing in Common Lisp (sbcl) on Arch Linux. The thing is, I now want to start working with OpenGL as well, so I've installed cl-opengl to provide the ...
1
vote
1answer
61 views

Turn-off debugger in Emacs SLIME

According to this question, I can customize the variable *DEBUGGER-HOOK* so that it falls back to toplevel (in REPL) instead of the debugger. I've added this line to my ~/.sbclrc and it's all fine ...
2
votes
1answer
37 views

How to highlight current argument in SLIME

I am using sbcl with GNU Emacs 24.3.1 and the 2012-04-14 release of SLIME, on Arch Linux to write some Common Lisp code. When writing an expression, if I type, for example (if the minibuffer will ...
0
votes
0answers
34 views

How do I load cl-opengl and lispbuilder-sdl-image automatically at emacs startup?

How do I load cl-opengl and lispbuilder-sdl-image automatically at emacs startup? now i have to slime-compile-load these commands in emacs at startup to use cl-opengl and image: (asdf:load-system ...
0
votes
2answers
76 views

M-x slime [No match] in emacs under mac osx

I am learning common lisp now. I want to use slime in emacs, but when I press M-x slime it says [No match] Initially I download the CVS snapshot and put this in my .emacs file (setq ...
1
vote
1answer
75 views

can't find any symbol in common lisp in emacs with slime

According to the guide on the Internet, we can search in the HyperSpec for the symbol like "format" in emacs by typing C-c C-d h , However, I just cannot have it work, emacs just prompts that there's ...
0
votes
1answer
130 views

Ensime inferior scala mode

I've setup Emacs + Ensime for scala. I'm able to start sbt console inside emacs using C-c C-v s If i start scala console inside emacs using C-c C-v z, I get the following error Welcome to Scala ...
0
votes
0answers
30 views

How to make slime-edit-definition work with non-compiled functions?

I am using slime with clisp. If I try to use M-. on a function call while the file has never been compiled but only evaluated (by the mean of `slime-eval-last-expression' aka C-x C-e) then I get that ...
1
vote
1answer
115 views

Emacs slime mini buffer take-over

For no obvious reason firing up slime in Emacs produces this message in the mini buffer: Polling "/tmp/slime.5000 .. 25 (Abort with `M-x slime-abort-connection'.) [730 times] That [730 times] ...
1
vote
2answers
97 views

when setting up “Slime” in “emacs”(latest version) how do i tell it to load swank faster?

the slime manual says this: "Loading Swank faster For SBCL, we recommend that you create a custom core file with socket support and POSIX bindings included because those modules take the most time to ...
0
votes
0answers
90 views

Loading SLIME editing commands in Emacs in LispBox

I'm using LispBox on OS X. I was trying to use the SLIME command C-c C-] to close all open parentheses in a given S-expression. But the emacs status tells me that C-c C-] is undefined. When I manually ...
1
vote
1answer
80 views

not able to find package when running from SLIME, but from command line is ok

I'm running the teapot example from cl-opengl package. The only changes I've made are loading the required packages. It works fine when executed from unix shell (sbcl --load "3.cl"), but when I try to ...
6
votes
3answers
425 views

which repl to use inside emacs for clojure

I am tring to setup an environment for editing clojure in emacs. I'm relatively new to emacs (only 1 yr) and totally new to clojure (2 weeks). I've found lots of tutorial online about how to setup ...
4
votes
1answer
60 views

how to display the the popup symbol document like in auto-complete?

While programming in emacs, like Lisp, the auto-complete mode will be popup candidates, also with a document tip after several seconds. My question is how to display the document tip directly, it is ...
3
votes
2answers
142 views

Load remote Lisp files

Maybe it's an unusual case, but I like to connect to a remote computer running Clozure CL AND compiling there some files, which are located on my local desktop. So, what I've achieved by now is to ...
0
votes
1answer
195 views

Emacs (24) loads and runs emacs-w3m, but doesn't use it for Lisp HyperSpec

I'm running an Emacs 24 + SLIME set up currently and am trying to get the Common Lisp HyperSpec to display in Emacs via emacs-w3m. Presently, if I enter into the mini-buffer M-x w3m it does indeed ...
3
votes
2answers
182 views

Setting up SLIME on MacOSX

I've been dancing around LISP for decades, but now have decided to get serious. I'm going through the online version of Practical Common LISP. This is my setup: MacOSX 10.7.8 Xcode 4.5.2 SBCL ...
1
vote
1answer
105 views

Use swank-js without js2-mode as major mode in emacs

I don't want to use js2-mode as major mode when editing js files. But I find I use swank-js very often(with magnar's slime-js setting). Of course I know that swank-js depends on js2-mode Can I just ...
6
votes
2answers
275 views

Can I use swank-js to complete node.js APIs in js2-mode?

I use swank-js in js2-mode in emacs. Can I use it to complete node.js build-in or third-party APIs such as fs.readFile, fs.writeFile, express.use, async.forEach etc. in js2-mode ? If yes, what would ...
1
vote
1answer
99 views

Examine values of local variables in SLIME debugger?

I'm in search for a better technique for doing it. My general struggle is with the fact that debugger enters either too late or too early to be able to catch the value of the variables. What I tried ...
2
votes
2answers
94 views

How does one avoid loading multiple asdf files for a common lisp project?

While working through Peter Seibel's book Practical Common Lisp, I've had some difficulty understanding how to handle the Common Lisp package system in conjunction with Emacs's SLIME and quicklisp. ...
3
votes
1answer
222 views

Setting up Emacs with swank-js and clojure

I would like to install slime-js but I already have Clojure installed and it is my understanding that Clojure's current Emacs integration will not work with the version of SLIME that swank-js uses. ...
0
votes
1answer
138 views

Editing a lisp file in emacs with SBCL

Ok so i am trying to get started with lisp and slime and i am running into some problems. I have correctly installed emacs and slime and SBCL but i run into problems when trying to edit files. I am ...
1
vote
2answers
64 views

Where is a clear list of `control strings`? When working with Lisp+Slime, the Hyperspec doc about `format` function is hard to find

(format t "~C ~D ???" var1) Who can give a tip, How/Where in the all power Hyperspec can we find a list of the control string? Things like this, when it's going to find some hints about the Lisp ...
2
votes
0answers
78 views

Slime-edit-definition to functions defined in top level let form?

Are there any ways to jump to functions defined in top level let form by slime-edit-definition? For example below, I want to jump to the head of (defin foo ...) form, not that of top level (let ...) ...
3
votes
1answer
83 views

slime - how to compensate probable recent changes

There has probably some minor/major change in how slime works, but since then I got a hard time fixing it. I am used to a slime where, when started, there is a REPL like CL-USER> a *scratch* ...
2
votes
1answer
75 views

Has anyone gotten swank.rb working with Emacs 24? [closed]

I've been looking for a SWANK server implementation for Ruby. I found https://bitbucket.org/yinwm/usemacs/src/5bb82e78239c/raw-elisp/march/macos/site-lisp/slime/contrib/swank.rb but have had little ...
0
votes
0answers
46 views

Problems installing slime with Aquamacs

I'm attempting to use slime with Aquamacs and have downloaded and run the slime installer from the Aquamacs site. However if I type M-x slime, Aquamacs comes back with [no Match]. It's as though ...
2
votes
1answer
105 views

Syntax highlighting mode for SLIME in emacs

How do I enable the syntax highlighting mode for SLIME in emacs?
1
vote
0answers
62 views

in slime-autodoc: error in process filter: Wrong type argument: sequencep, :not-available

When I use the slime-repl, I get this message in my minibuffer and emacs hangs for a second: error in process filter: Wrong type argument: sequencep, :not-available It stops happening when I turn ...
2
votes
1answer
387 views

Setting the SLIME in emacs

I was trying to install the SLIME. I downloaded the zipped package and according to the README file, I had to put this piece of code in the .emacs file: (add-to-list 'load-path ...
1
vote
0answers
103 views

How to get SLIME to autocomplete symbols from loaded other packages?

I think this used to work out of the box in Emacs 23, but in 24 it doesn't. So, suppose I have Alexandria package loaded with Quicklisp. If I run (apropos "curry") in the REPL, for example, it finds ...
0
votes
1answer
156 views

Slime-repl isn't here

I have installed Emacs + SBCL + slime but I have a problem with slime. I'm on a Mac OS X 10.7.4 When I do M-x slime I have two screen scratch on the top and inferior-lisp on the bottom. But I don't ...
1
vote
1answer
79 views

Emacs and chord translation

I'm having some issues with emacs, in particular when using SLIME. It's not reading the slime-eval-defun command (bound to C-M-x) but will read C-M-S-x... same issue with the indent function C-X-q, I ...
2
votes
1answer
178 views

Unexpected behavior with `eval-when`

The following fragment of CL code does not work as I expected with CCL running SLIME. If I first compile and load the file using C-c C-k, and then run (rdirichlet #(1.0 2.0 3.0) 1.0) in the ...
1
vote
2answers
104 views

How to write comma character in a SLIME EMACS window

How can I write a "," (comma) character in the SLIME emacs window? The , key brings up the SLIME command prompt automatically. Thanks, a Lisp beginner
7
votes
1answer
271 views

Why does swank-js give me “document is not defined” in the emacs REPL?

I follow these steps: Run swank-js in the command line. Run emacs. M-x slime-connect. Host: 127.0.0.1; Port: 4005 Open up the http://localhost:8009/swank-js/test.html in Firefox. Receive: "Remote ...
3
votes
2answers
401 views

How to start programming with SLIME and Steel Bank Common Lisp on Windows 7 x64?

I'd very much like to start using these tools, but it seems I'm not smart enough :-( I've spent hours reading docs, moving folders around and editing config files, but I still cannot start Emacs ...
3
votes
2answers
196 views

Can't get Slime and Swank working with Clojure in emacs in os x

Just trying to get a very basic install of slime and clojure working, but swank keeps failing when I run clojure-jack-in I first got lein, then put the following in my .emacs (for version 24.1): ...
6
votes
3answers
143 views

Can I background a running thread in the Slime (Swank Emacs)

I often find my self starting some long running process from the REPL and then wish I could carry on using the REPL for other tasks while it was running. Can I use slime to background the current ...
0
votes
1answer
200 views

Aquamacs+slime: Loading a lisp file at startup

I'm running Aquamacs + Slime and I'm able to start Slime automatically when I start Aquamacs. However, when I try to load a lisp file after that I keep getting various errors depending on how I'm ...
2
votes
2answers
515 views

slime-fancy not loading with emacs sbcl slime windows configuration

I have slime with sbcl working in emacs 24.1 but can not get a slime repl to open. I can use M-x slime to make a connection to sbcl in a inferior-lisp buffer but I can not invoke the slime-repl or ...
1
vote
1answer
506 views

How to install the slime into emacs under Windows7

How to install the slime into emacs under Win7? I download a compact package with '.tgz'. But it seems for linux. But there is really not one thing for windows(win 32 OS). I unfold this package and ...
4
votes
2answers
100 views

How to make Lisp forget about previously exported symbols?

This is how I export symbols :bar and :baz from package foo: (in-package :cl-user) (defpackage foo (:use :cl) (:export :bar :baz)) (in-package :foo) When I remove :baz from the list of ...
0
votes
2answers
128 views

*scratch* buffer using SLIME

I realize that SLIME is the Superior Lisp Interaction Mode but I'm wondering if there is a "Lisp Interaction" buffer that works with Common Lisp like the *scratch* buffer works with Emacs Lisp. I.E. ...
0
votes
1answer
195 views

clojure-jack-in error

I installed clojure-mode and slime using the emacs starter kit and I get this error when I do clojure-jack-in - Symbols value as variable is void: slime-clj What could be causing this? Thanks!
1
vote
1answer
444 views

slime-connect not working

I am an Emacs and Common Lisp novice. I have successfully installed SLIME in my Emacs, but I am unable to run it. Alt + x slime-connect gives the following options, accepting which gives the error ...
3
votes
1answer
190 views

How to enable rainbow parentheses in SLIME?

I am an Emacs and Common Lisp novice. I have successfully installed SLIME in my Emacs, but I noticed it does not have rainbow parentheses (which comes as a surprise). How do I enable this feature? ...
1
vote
1answer
419 views

Emacs: ac-slime for auto complete

I am trying to add auto complete for *.lisp files. My slime setting is: (add-to-list 'load-path "~/.emacs.d/plugins/slime/") (setq slime-lisp-implementations '((sbcl ("/opt/sbcl/bin/sbcl" ...

1 2 3 4