Tagged Questions

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
387 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 ...
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
638 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 ...
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
91 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
3answers
386 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
505 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
289 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
683 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
410 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
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
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
0answers
88 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
1answer
341 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
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
56 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
2answers
119 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
785 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
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? ...