Swank is the Common Lisp server component of SLIME, the Superior Lisp Interaction Mode for Emacs.
2
votes
1answer
59 views
How to setup classpath for slimv and ritz
I would like to resolve my problem for classpath.Could you tell me how to do?
I can do the following.
I can eval (+ 1 1) in vim(slimv) by pushing ,e.
Then slimv display the followings.
user>
...
1
vote
2answers
97 views
when setting up “Slime” in “emacs”(latest version) how do i tell it to load swank faster?
the slime manual says this:
"Loading Swank faster
For SBCL, we recommend that you create a custom core file with socket support and POSIX
bindings included because those modules take the most time to ...
1
vote
1answer
184 views
Clojure, emacs, ritz-swank: `M-x slime-connect` gives error message
I spent the afternoon trying to get the ritz-swank package to work with emacs and Clojure. (Googling the error message and much more gave no useful leads.) I hope somebody can give me some pointers ...
0
votes
0answers
23 views
SWANK specification
Where to find a specification of the swank protocol? I've found the slime implementation, but that's not really a specification.
0
votes
1answer
111 views
Kite live editing
I really like the idea behind Kite – using WebKit's own protocol for remote debugging. No need for a proxy socket server or a bookmarklet to connect to a web-page (that's how swank-js operates).
The ...
1
vote
1answer
105 views
Use swank-js without js2-mode as major mode in emacs
I don't want to use js2-mode as major mode when editing js files. But I find I use swank-js very often(with magnar's slime-js setting).
Of course I know that swank-js depends on js2-mode Can I just ...
6
votes
2answers
268 views
Can I use swank-js to complete node.js APIs in js2-mode?
I use swank-js in js2-mode in emacs. Can I use it to complete node.js build-in or third-party APIs such as fs.readFile, fs.writeFile, express.use, async.forEach etc. in js2-mode ? If yes, what would ...
1
vote
1answer
48 views
Can i load swank lazily?
The following code works but i have to load swank no matter whether i need it or not.
(ql:quickload :swank)
(defun swank ()
(swank:create-server :port 4005 :donot-close t))
If i move ...
1
vote
1answer
96 views
vim mapping not working with slimv plugin
The following mappings are located in my .vimrc and are used to quickly navigate between vertical split panes created with :vsp and split panes creates with :sp.
" Smart way to move between windows
...
1
vote
1answer
73 views
how to automatically load new dependencies from project.clj in swank
I am working in emacs, swank-clojure. I start my repl using clojure-jack-in. However when I add a new dependency to my project.clj, the dependency is not available in the repl.
1) Is there a way to ...
7
votes
1answer
269 views
Why does swank-js give me “document is not defined” in the emacs REPL?
I follow these steps:
Run swank-js in the command line.
Run emacs.
M-x slime-connect.
Host: 127.0.0.1; Port: 4005
Open up the http://localhost:8009/swank-js/test.html in Firefox.
Receive: "Remote ...
3
votes
2answers
195 views
Can't get Slime and Swank working with Clojure in emacs in os x
Just trying to get a very basic install of slime and clojure working, but swank keeps failing when I run clojure-jack-in
I first got lein, then put the following in my .emacs (for version 24.1):
...
6
votes
3answers
142 views
Can I background a running thread in the Slime (Swank Emacs)
I often find my self starting some long running process from the REPL and then wish I could carry on using the REPL for other tasks while it was running. Can I use slime to background the current ...
3
votes
1answer
146 views
Autoindent a .lisp file from the command line and use slimv to do the indenting
I am trying to autoindent a .lisp file from the command line, leveraging vim+slimv to do the indenting.
I tried scripting it:
vi -c 'call SlimvConnectSwank()' -c 'normal gg=G' -c 'wq' -c 'q!' ...
2
votes
0answers
60 views
resetting the swank in emacs
Let me the describe the problem I am having in emacs.
I started the swank using the clojure-jack-in. I had to kill it for some reason, and killed swank using M-k (I dont know if there is a better ...
2
votes
2answers
1k views
Getting started with Datomic and Clojure in Emacs
My project.clj file looks like this
(defproject cljs-template "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure ...
4
votes
2answers
192 views
“Hot swapping” code with swank clojure, and crash resilience
I've been messing around with developing a game in clojure, and one thing I've been really excited about is hot swapping in code.
I've been using swank clojure and emacs with the lein-swank plugin.
...
7
votes
1answer
847 views
Clojure Editor written in Clojure
Note: I'm not looking for LightTable. I really am looking for a Clojure Editor implemented in Clojure.
Recently, I've been studying slime/swank/elisp. Although it's an amazing system, I actually ...
3
votes
4answers
547 views
Killing Infinite Loops in Java/Clojure
Responses to some "potential answers"
You should sprinkle "interrupts" into your threads
I don't write my code with the intention of it being a long process / infinite loop; it's just that in ...
1
vote
1answer
150 views
Setting up Uber development mode in Emacs for Clojure
I am aware of
A gentle tutorial to Emacs/Swank/Paredit for Clojure
I basically have the same question.
I noted that there is an EDIT saying that the instructions are outdated, and there will be an ...
0
votes
1answer
37 views
Getting slime-documentation's output as a string
popup.el's popup-tip is pretty awesome - check it out. I'm trying to get it to display the output of SLIME's display-documentation method, using the current word pointed by the caret as the argument.
...
1
vote
1answer
56 views
Leakage of java.exe processes
In Emacs + clojure-mode/swank-clojure, when I quit, the java.exe process that was created doesn't get actually killed (as much as I select 'y' when asked for it). What could be the cause?
0
votes
3answers
358 views
Swank server startup failure
Emacs SLIME can't connect to swank, because apparently swank cannot initialize correctly.
It says some back end function not implemented. However, my swamp backend is SBCL, which is supported. I am ...
1
vote
1answer
317 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 ...
4
votes
1answer
233 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 ...
4
votes
2answers
380 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
...
2
votes
0answers
326 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 ...
7
votes
4answers
2k 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
1answer
314 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 ...
2
votes
0answers
160 views
error using swank with leiningen and elein [closed]
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) ...
6
votes
5answers
3k 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 ...
1
vote
2answers
567 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
442 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]
...
2
votes
1answer
194 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 ...
3
votes
2answers
2k 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 ...
5
votes
1answer
232 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
240 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
1k 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 ...
5
votes
1answer
277 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)
...
15
votes
5answers
818 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 ...
2
votes
2answers
88 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
383 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) ...
6
votes
2answers
548 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, ...
10
votes
3answers
976 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 ...
17
votes
3answers
3k 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:
...
4
votes
2answers
642 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).. ...
0
votes
2answers
411 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?
...
1
vote
3answers
506 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 ...
5
votes
2answers
750 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 ...
10
votes
3answers
531 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 ...