Swank is the Common Lisp server component of SLIME, the Superior Lisp Interaction Mode for Emacs.
2
votes
1answer
115 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
? ...
12
votes
4answers
2k 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 ...
4
votes
4answers
486 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 ...
1
vote
1answer
1k 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? ...
4
votes
1answer
500 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 ...
9
votes
1answer
1k 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 ...
0
votes
1answer
186 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 ...
4
votes
1answer
641 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 ...
6
votes
1answer
724 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 ...
2
votes
3answers
1k 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 ...
11
votes
1answer
472 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 ...
1
vote
1answer
210 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?
9
votes
4answers
3k 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 ...
3
votes
2answers
895 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 ...
4
votes
3answers
4k 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 ...