Tagged Questions
The Superior Lisp Interaction Mode for Emacs.
28
votes
7answers
4k views
What is the closest thing to Slime for Scheme?
I do most of my development in Common Lisp, but there are some moments when I want to switch to Scheme (while reading Lisp in Small Pieces, when I want to play with continuations, or when I want to do ...
21
votes
4answers
5k views
How to setup Aquamacs for Clojure development?
I've tried to migrate to Emacs several times for Clojure development, following a variety of blogposts, screencast and tutorials, but somewhere along the way something always went wrong - keybindings ...
14
votes
3answers
384 views
What does #+#. mean in lisp?
It is almost impossible to google, hence my understanding is limited to contextual clues from reading through the slime source code: perhaps it is part of the object system in common lisp? Something ...
14
votes
3answers
926 views
How to Reload files upon save when using swank+leiningen+emacs
I'm looking to set up slime+lein-swank to reload source files referenced from the repl when i save the file. currently i do this:
edit file
save file
switch to repl
(use :reload-all ...
12
votes
1answer
763 views
can I use two different lisp+slime/swanks from the same emacs?
can I use common lisp and Clojure from within emacs at the same time?
I would like to have each lisp-REPL in its own buffer, and If i did this how could I controll which buffer sent its data to which ...
11
votes
3answers
1k views
emacs setup for both clojure and common lisp with slime-fancy (slime-autodoc)
I set up emacs for both clojure and common lisp, but I want also (slime-setup '(slime-fancy)) for common lisp. If I add that line to init.el, clojure won't work: it gives me repl, but it hangs after I ...
11
votes
8answers
6k views
How do I get a common-lisp GUI in Windows?
I'm using Emacs, with CLISP and Slime, and want to be able to draw pictures on the screen. I'm specifically thinking about drawing graphs, but anything that would let me draw basic shapes and ...
10
votes
4answers
1k views
What does the 'swank-clojure' do exactly, and do we have 'swank-SOMETHING_ELSE'?
My superficial understanding is that 'swank-clojure' makes 'M-x slime-connect' possible. I mean, it gives a connection to a clojure server something like 'lein swank'. Is my understanding correct? If ...
10
votes
1answer
221 views
How can I stop a running operation in the SLIME REPL?
Is there a way to stop a running operation in the SLIME REPL?
The Clojure SLIME folks apparently have some way to do this, so how about in ordinary Common Lisp?
Thanks /Erik
10
votes
1answer
2k views
Using clojure.contrib functions in slime REPL
I want to use the functions in the clojure.contrib.trace namespace in slime at the REPL. How can I get slime to load them automatically? A related question, how can I add a specific namespace into a ...
10
votes
1answer
386 views
Can I connect two emacs/slimes to the same swank instance?
when I start swank through leiningen it accepts the next slime connection and off I go. I would really like to have several emacs instances connect to the same swank instance. Can I do this? can I do ...
9
votes
4answers
2k views
Clojure emacs slime + swank directory question
I'm using emacs with clojure-swank and slime and trying to set my development environment. And I ran into a problem. When I start a repl I'm stuck in an unknown directory preventing me to load my ...
8
votes
3answers
529 views
What are the good things about slime?
As I asked here, I couldn't make it run Aquamacs/slime/clojure, but I could use Auqamacs/clojure with 'M-x conjure-mode', then C-c C-z (run clojure) and C-c C-e (run expression).
I don't have an ...
8
votes
3answers
3k views
Emacs (Cocoa Emacs) vs Aquamacs for running Clojure on Mac OS X
I used Aquamacs so far, and I need to install and run Clojure using SLIME. I googled to get some way to use Clojure on SLIME of Aquamacs, but without success.
Questions
Is it possible to install ...
8
votes
4answers
933 views
How do I use unicode (UTF-8) characters in Clojure regular expressions?
This is a double question for you amazingly kind Stacked Overflow Wizards out there.
How do I set emacs/slime/swank to use UTF-8 when talking with Clojure, or use UTF-8 at the command-line REPL? At ...
8
votes
1answer
769 views
Which IDE are CLISP Programmers using?
I noticed how SLIME (lisp development package for Emacs) does not come with a frame-source-location function for CLISP, so you can't automagically jump to a source location when inside the debugger. ...
7
votes
4answers
2k views
In a Emacs + Slime + Clojure + Windows setup, failure to load clojure-auto
I followed this very helpful guide on getting this development environment set up. When running the emacs.bat I get the following error in Emacs:
File error: Cannot open load file, clojure-auto
...
6
votes
1answer
530 views
what exactly does clojure-jack-in do? And how to config the settings with slime?
what exactly does clojure-jack-in do? And how to config the settings with slime ?
What do I need to add to .emacs?
6
votes
2answers
234 views
lisp as a shebang script vs lisp running in SLIME
I just started with common-lisp, having come from C++ and Python. I'm trying to run a simple SDL program that does nothing other than show an image on-screen. I can get it working from within SLIME. ...
6
votes
2answers
259 views
Understanding output in Clojure using swank/slime
When I run Clojure code from the Swank repl in emacs, the main thread will print out messages using printf to the repl. But if I run agents or explicitly create other threads which also print, ...
6
votes
4answers
393 views
Learning Common Lisp tips for a Windows/C++ programmer
I'm an experienced C++/.NET/Java Windows/web programmer trying to learn (Common) Lisp. I'm reading Practical Common Lisp and using SLIME.
I'm getting the Lisp language easily enough, but I'm having ...
6
votes
1answer
204 views
In clojure, how can I undef a var from a namespace?
In clojure I have lines like this that define default values:
(def *http-port* 8080)
I've now decided to formalize these kinds of values into a configuration unit and I would like to undefine the ...
6
votes
3answers
596 views
Updating font-lock keywords in emacs without major mode reload
I am doing small modification to SLIME, so that I can get all currently loaded symbols from Lisp, analyze them and make font-lock fontify them.
I managed to do all these steps, but I have a small ...
5
votes
1answer
171 views
Emacs with Slime and Swank for non-leiningen projects
I found this website which explains how to use emacs with leiningen, swank, and slime. Is there a way to use slime + swank in non-leiningen projects i.e. how can I connect to slime/swank repl to run a ...
5
votes
1answer
192 views
Maximum debug info from Steel Bank Common Lisp & Slime
What's the best way to initialise a Lisp session (I'm using Slime and sbcl) such that functions are always compiled with the maximum amount of debug information?
5
votes
1answer
458 views
Clisp + Emacs compile-and-load-file
Starting to learn Common lisp. Instal in my debian 5.03 clisp, emacs-23.1 and slime.
Write in .emacs:
(setq inferior-lisp-program "/usr/bin/clisp") ; your Lisp system
(add-to-list 'load-path ...
5
votes
1answer
817 views
Jump to function definition in Emacs + Slime/leiningen-Swank + Clojure
I'm using Emacs with clojure mode and slime connected to a swank server produced by running lein swank and would really love to be able to easily jump to function definitions within my project. Can I ...
5
votes
3answers
347 views
sbcl runs forever on second call of function
The function:
Given a list lst return all permutations of the list's contents of exactly length k, which defaults to length of list if not provided.
(defun permute (lst &optional (k (length ...
5
votes
2answers
388 views
Lisp: CHAR is neither declared nor bound
I have decided to learn (Common) Lisp a few days ago and I realize that this is quite a newbie question and it is probably extremely trivial to someone with at least a bit of experience.
So basically ...
5
votes
3answers
1k views
Please recommend a good Slime tutorial or screencast
My adventures in Java have lead me to look into Clojure, which then lead me to (re)discover Emacs and that lead me to SLIME.
I have a fairly decent handle on Emacs itself, and I have the ...
5
votes
5answers
674 views
How to save all functions I entered in LispBox/Slime?
Situation: I entered several functions while working with REPL in Emacs.
Problem: There is junk like "; Evaluation aborted" when I'm simply saving buffer.
What I want: clear descriptions of all the ...
4
votes
1answer
84 views
Exception when connecting to swank-server
When trying to M-x slime-connect to a swank server running in a clojure app I get a user> prompt but as soon as I start typing the connection breaks as the app throws:
exception in read loop
...
4
votes
2answers
225 views
Problems getting Emacs 24 to run SLIME and Clojure Debug Toolkit (CDT)
I'm trying to get Slime working with CDT and emacs 24, to no avail, and would appreciate suggestions.
1) I did get clojure-jack-in to run, but only when I loaded swank-clojure 1.3.3 as a lein plugin, ...
4
votes
4answers
260 views
Clojure import versus :import
Reading the clojure API for import I see that :import in the ns macro is preferred to import, however when i'm coding using swank/slime/emacs, I can't c-x c-e the (ns .. ) s-expression to get the deps ...
4
votes
5answers
648 views
Slime mode error
I was following the guide and information from A gentle tutorial to Emacs/Swank/Paredit for Clojure
However after opening elpa and installing clojure-mode, slime and paredit. I restarted emacs and ...
4
votes
2answers
102 views
How can I unintern a qualified method?
During development I defined an 'initialize-instance :after' method which after a while was not needed anymore and actually gets in my way because inside it calls code that is not valid anymore. ...
4
votes
1answer
121 views
How can I define the address that swank server should listen to?
There is no argument for setting the address to bind to when starting swank server:
* (describe 'swank:create-server)
=> ...
Lambda-list: (&KEY (PORT DEFAULT-SERVER-PORT)
...
4
votes
2answers
324 views
How to capture stdout/log output of an agent in SLIME?
I send a task to an agent, but can't see the output of any print statements I've put into the function. How do I trace code execution on agents?
EDIT: Turns out I do get the output in the console, ...
4
votes
3answers
385 views
Stopping infinite loops while running clojure tests in emacs with leiningen and swank/slime
In certain kinds of code it's relatively easy to cause an infinite loop without blowing the stack. When testing code of this nature using clojure-test, is there a way to abort the current running ...
4
votes
3answers
208 views
Is there anything like Lisp's SLIME for Python/Django?
I know about the Django console and it's useful to an extent but it would be really nice to be able to edit your code with the console open, lime SLIME in Emacs. Is there anything that facilitates ...
4
votes
3answers
163 views
Copy/Yank entire Lisp form in Slime
Is there a way to copy/yank a whole a form in Slime/Emacs?
For instance, if I have the following function:
(myfunc (lst)
(myotherfunc lst))
I'd like to yank/copy:
(myotherfunc lst)
by ...
4
votes
3answers
615 views
How do I connect a clojure source file to a running clojure repl on Emacs?
I'm currently in the process of adding functionality to an existing J2EE webapp, in a Tomcat container, and I'm writing my additions using Clojure. My setup is simple: I just add calls to static ...
4
votes
1answer
167 views
Troubles Importing Clojure Libs in Paradise
I occasionally get this problem, and generally work around it, but it's rather frustrating.
I have all of Incanter (check it out if you don't know it: it's superb) on my classpath. I try to import ...
4
votes
1answer
446 views
auto indentation on common lisp emacs + slime + sbcl in windows
I can't use auto indentation function on emacs + slime + sbcl when I define my function and so on.
My .emacs file configuration is this:
(setq inferior-lisp-program
"D:/emacs/sbcl_1.0.37/sbcl.exe"
...
4
votes
1answer
125 views
Setting slime-enable-evaluate-in-emacs
I am using SBCL with slime, and have the following code:
(swank::eval-in-emacs
'(with-current-buffer (slime-repl-buffer)
(insert (propertize "foo" 'font-lock-face '(:foreground "red")))))
...
4
votes
2answers
723 views
How can I abort an evaluation in Clojure Box (Emacs)?
I've been caught up in long running computations lately thanks to Project Euler and I'd like to know how to abort an evaluation and return to the REPL prompt. I'm running the standard Clojure Box ...
4
votes
3answers
3k views
Getting started with SLIME and SWANK: Lisp connection closed unexpectedly: connection broken by remote peer
I was trying to use the slime-connect function to get access to a remote server with sbcl. I followed all the steps from the slime.mov movie from Marco Baringer, but I got stuck when creating the ssh ...
4
votes
4answers
2k views
Lisp In A Box - Why is it starting a server?
I've decided to get back into LISP (haven't used it since my AI classes) to get more comfortable with functional programming in general, so I downloaded Lisp In A Box (which we actually used in a ...
3
votes
2answers
118 views
Clojure documentation in Emacs
Is it possible to view Clojure function documentation in Emacs? Namely, can I configure Emacs to lookup Clojure functions under the cursor?
I'm using clojure-mode and SLIME. Oddly, I can't even use ...
3
votes
2answers
280 views
I can't initialize neither swank nor clojure-jack-in
I've a problem..I've installed clojure, slime, slime-repl and elein using marmalade...now I open my project and call elein-swank..I get this:
Starting swank..
error in process filter: ...