Tagged Questions

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 ...
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
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 ...
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 ...
4
votes
2answers
89 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
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
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 ...
3
votes
2answers
283 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: ...
3
votes
3answers
671 views

Setting up emacs/slime/swank for clojure with leiningen

Short version: errors when running M-x slime-connect or M-x clojure-jack-in when using lein swank to start the swank server. I'm using emacs 24.0.50.1 on Ubuntu 10.10. I've installed the following ...
3
votes
2answers
402 views

Setting up SLIME & Inferior-Lisp for Clojure in Emacs

SLIME I'm pretty new to both Clojure & emacs and I've been trying to set up SLIME for Clojure. The official documentation implicitly assumes you know what your doing with emacs. There isn't ...
3
votes
3answers
387 views

Equivalent of 'lein swank' to other Lisp/Scheme implementations with emacs/slime

I've been using emacs/slime for coding lisp, but with Clojure I found 'lein swank'. I must say that it's pretty useful, as I can connect to a server that runs clojure. How about the other Lisp ...
2
votes
1answer
72 views

Workflow for hacking on Clojure libraries using swank-clojure

Is there a typical workflow for hacking on Clojure libraries? Say I have my application "Foo" which relies on a third-party library "Bar", which was obtained from a repository, and included in ...
2
votes
2answers
79 views

Why am I not seeing my macro-created functions in the new slime session? (clojure)

In my clojure code, I have a few functions which are created with calls to custom macros. Typically, the macros would take a data structure of some sort and create a method from it. This is a ...
1
vote
1answer
55 views

How to use project namespace in SLIME REPL

I've installed lein with the swank plugin, Emacs, SLIME, and clojure-mode, and created a new project using lein new. I've called the project clojure-test. I then open ...
1
vote
0answers
77 views

Slime is throwing a “Variable binding depth exceeds max-specpdl-size” in my Clojure repl

My clojure repl started throwing a "Variable binding depth exceeds max-specpdl-size" error and I've gotten thrown into the debugger. I am currently accessing slime via clojure-jack-in and I am ...
1
vote
2answers
116 views

Overtone Livecoding with Emacs/Slime/Swank/cake - Could not locate overtone.live__init.class

I am trying to use emacs and slime to connect to swank to live code using Overtone. I have the whole thing pretty much working, but when i try to run (ns foo (:use [overtone.live] ...
1
vote
3answers
378 views

How to fix backtrace in clojure & slime

I'm a clojure noob trying to get emacs & slime set up. There doesn't seem to be one true way to do this, so I've followed a few blog posts and the swank-clojure and leiningen READMEs. Mostly it ...
1
vote
1answer
140 views

Other editors that can use slime/swank?

I have been quite happy with Emacs/slime+swank for a long time, and was just wondering if there are any other editors/IDEs that can connect to a swank instance?
0
votes
1answer
66 views

Updating Clojure version for swank/slime

I just updated from Clojure 1.2 to clojure 1.3.0 on Windows 7 and emacs is still going to Clojure 1.2 with swank/slime. Any suggestions where to change this so it uses 1.3?