Tagged Questions

Swank is the Common Lisp server component of SLIME, the Superior Lisp Interaction Mode for Emacs.

learn more… | top users | synonyms

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 ...
7
votes
3answers
388 views

clojure swank server opens public port?

(This question has been downvoted, which I find strange. How have I offended?) Am I right to think that running a swank server usually opens port 4005 to the world, not bound to localhost-only ...
7
votes
1answer
636 views

Good workflow with emacs+swank+slime+clojure?

I just wanted opinion on good workflow using the emacs environment with clojure+swank+slime. I often find myself doing very repetitive keycommands and wonder if there is an obvious better way. I ...
6
votes
1answer
457 views

Embedding swank-clojure in java program

Based on the Embedding section of http://github.com/technomancy/swank-clojure, I'm using the following to test it out. Is there a better way to do this that doesn't use Compiler? Is there a way to ...
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
2answers
164 views

How to redirect swank server output to emacs buffer?

I want to redirect my swank server output to an emacs buffer. I put this in ~/.swank.lisp, but this does not work- (setf swank:*globally-redirect-io* t) Im using Clojure box. Thanks.
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
1answer
336 views

Can an embedded swank-clojure repl access the program it is embedded in?

I'm trying to embed a swank-clojure repl into my application for the purpose of connecting while the app is running to muck around with things. However, I'm having trouble figuring out how to access ...
4
votes
1answer
504 views

How to reconnect to slime/swank-clojure session?

It seems that whenever I disconnect from clojure slime session, I cannot reconnect again. I am using leiningen to start the swank session (with lein-swank plugin). So, every time I quit emacs (I know ...
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
0answers
110 views

using slimv with clojure

Are there any docs on using slimv with clojure? I got it connected to a lein swank and have a working repl but can't figure out how to actually do anything with it. How do you get it to load a lein ...
3
votes
3answers
670 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
1answer
646 views

upgrading lein project from clojure 1.2.1 to 1.3.0-beta1

I have a leiningen project that uses clojure 1.2.1. I would like to add a dependency to a package that requires clojure 1.3.0-beta1. So I decided to upgrade my project to the newer version. To be ...
3
votes
2answers
262 views

How I can eval a buffer and/or an instruction within Emacs with Swank and SLIME?

Hy everyone, I've successfully installed clojure-mode, slime, slime-repl within Emacs. I start a swank server with "lein swank" and hang slime to it with "slime-connect". I can use the SLIME REPL to ...
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 ...
3
votes
2answers
838 views

Java input in Clojure with (read-line) not reading properly in Emacs

Has anyone encountered a problem with emacs on windows and java input ? (read-line) in the REPL does not recognise the delimiter (well thats my guess). Using a vanilla clojure in the box, same ...
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
0answers
85 views

error using swank with leiningen and elein

I'm using leiningen and elein in linux, when I create my project I add: :dev-dependencies [[swank-clojure "1.2.1"]]) then I call "elein-swank" and perfect...this connects swank and (apparently) ...
2
votes
0answers
69 views

A Clojure/Swank `break` exits the enclosing Leiningen process--why?

I was debugging my Clojure program, Infocard Workbench, when I got a truly unexpected error: A (swank.core/break) in a function caused an error to the CLI window that aborted execution, even though ...
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 ...
2
votes
1answer
289 views

How to automate starting up jetty/appengine-magic and swank?

With my Clojure/appengine-magic project, I currently start things up like this: lein repl (doto 'tlog.core require in-ns) (compile 'tlog.core) (ae/start tlog-app) (require 'swank.swank) ...
2
votes
1answer
340 views

Send emacs buffer to arbitrary Python process

I like the python-send-buffer command, however I very often use Python embedded in applications, or launch Python via a custom package management system (to launch Python with certain dependencies).. ...
2
votes
1answer
60 views

Is there a simple method for writing traces from multiple sbcl threads to standard output through MCLIDE/swank?

Using SBCL, I'm writing a small server and I would like to trace the server thread, but when I use mclide/swank, I do not see any output from the server thread. ? (require 'sb-posix) NIL ? ...
2
votes
3answers
953 views

Can I use swank-clojure with the clojure 1.2 master branch?

I'm happily using swank-clojure, installed via elpa. But I'd like to do some work with deftype, defprotocol, etc., which aren't aren't available in clojure 1.1. To use my own class paths, I'm using ...
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
1answer
171 views

slimv - error connecting to clojure swank server

Tried to get slimv running today, but ran into an issue. These are the steps I went through: Installed clojure 1.3.0: brew update && brew install clojure Setup swank-clojure: lein plugin ...
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
1answer
1k views

node.js - eval'ing to a live process

Did anyone set up something like this for himself using the existing node.js REPL? I didn't think of a quick way to do it. The way I do it today is using emacs and this: ...
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
784 views

Running 'lein swank' (calling clojure server) with elisp

As is asked and answered here. I could use 'lein swank' to run clojure on Aquamacs. I need to automate running 'lein swank', before running slime/clojure. Q : Is there a way to this automatically? ...
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?
0
votes
2answers
354 views

How do I get 'cake repl' working on OSX? (I'm getting 'Exception in thread “main” java.lang.NoClassDefFoundError: clojure/main')

I'm trying to get clojure/emacs/swank/cake all working together. According to assembla I need 'cake repl' to launch a repl, but I keep getting a NoClassDefFoundError. Any idea how to fix that? ...
0
votes
1answer
144 views

Using slime's C-x C-e (Eval the form under the point) with swank-clojure in emacs

I'm using swank-clojure in emacs on OSX. I'm able to run a slime session. When I use C-x C-e on a simple form in a .clj file like (+ 7 7) I get an sldb buffer with Unable to resolve symbol: + in ...