vote up 1 vote down star

I've been caught up in long running computations lately thanks to Project Euler and I'd like to know how to abort an evaluation and return to the REPL prompt. I'm running the standard Clojure Box version of Emacs. I tried the obvious REPL > Interrupt Lisp Process and Slime > Interrupt Command but neither kill the execution and return my REPL prompt.

flag

2 Answers

vote up 2 vote down check

Hit control c twice. If you're in *slime-repl clojure* then C-c C-c will kill the process and return you to the repl prompt. If you're in the *inferior-lisp* buffer, then you'll probably kill the clojure process, meaning that you'll have to restart slime (with M-x slime). If you don't have a slime repl buffer then, M-x slime-repl should give you one. You can use this as a repl to get a few extra features (try pressing the comma and tab, and see what's available ;)

link|flag
I tried that and it doesn't work. Both of the commands I listed in the question - Interrupt Lisp Process & Interrupt Command - are listed as C-c C-c in the menu. Neither works. – rrc7cz Nov 1 at 10:05
huh ... works for me ... are you in the slime repl ? or a buffer called inferior-lisp ?? – l0st3d Nov 1 at 20:22
It's strange; this sometimes works for me, but other times not – rrc7cz Dec 7 at 20:50
vote up 1 vote down

When things get really fowled you can kill your lisp instance with M-x slime-quit-lisp and then restart it with M-x slime

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.