Questions tagged [swank]

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

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

83 questions
0
votes
2 answers

Navigating to the definitions of `defun` and `defmacro` with slime/swank

Emacs version: 26.3 Slime version: 2.26.1 I start up Emacs. I open up a simple .lisp file. (defun testfn (x y) (+ x y)) (defmacro testmc (form) form `(list 1 2 3)) I place my cursor over the symbol defun and issue the keyboard-command M-.…
John DeBord
  • 638
  • 1
  • 5
  • 17
0
votes
2 answers

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? Here's what I get in the command line: $ cake ps 7876…
bmaddy
  • 876
  • 9
  • 16
0
votes
0 answers

Slimv: Evaluation aborted on

I'm debugging the following mit-scheme program through vim with the assistance of slimv. (define (pascal x) (define (pascal-iter m n max-len) (cond ((and (> m 0) (> n 0)) (pascal-iter m (- n 1) max-len) …
nalzok
  • 14,965
  • 21
  • 72
  • 139
0
votes
1 answer

swank server *swank-debugger-condition*

I am new to Lisp, and working in Emacs with Slime, I am constantly getting this error Error: The variable SWANK/SBCL::*SWANK-DEBUGGER-CONDITION* is unbound. I have spent a long time googling this and can find no reference to that variable. What is…
saq7
  • 1,528
  • 1
  • 12
  • 25
0
votes
1 answer

SLIME and SWANK Fail on a MIPS Architecture

I am trying to use Emacs with SLIME and Swank on an Imagination Creator CI20 Mips board to learn Common Lisp. I am using SBCL and Clisp as my compiler/interpreter (mainly SBCL which is usually set as the inferior-lisp-mode); I did however test this…
haziz
  • 12,994
  • 16
  • 54
  • 75
0
votes
1 answer

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 this context [Thrown class…
hiheelhottie
  • 927
  • 8
  • 10
0
votes
2 answers

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?
Arthur Ulfeldt
  • 90,827
  • 27
  • 201
  • 284
-1
votes
1 answer

What should g:slimv_swank_cmd be to run SLIMV for SBCL on Windows 10?

I'm trying to use Steel Bank Common Lisp with GVim. I installed Steel Bank Common Lisp (AMD64) into 'C:\Program Files\Steel Bank Common Lisp'. I unzipped SLIMV into 'C:\vimfiles' I installed Python3 and put it in Windows PATH. I installed Python 2.7…
1 2 3 4 5
6