From 607533a8ec87511b21d94a3718de224345ca73e9 Mon Sep 17 00:00:00 2001 From: Alan Malloy Date: Tue, 28 May 2013 16:28:04 -0600 Subject: [PATCH] Rebind `q` in debug buffer As it's set now, `q` just breaks the entire nrepl/ritz session. I bound it to `abort` instead of `quit`, and now it does roughly what's expected by slime/swank users. --- nrepl/elisp/nrepl-ritz.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nrepl/elisp/nrepl-ritz.el b/nrepl/elisp/nrepl-ritz.el index 4483f96..1395b93 100644 --- a/nrepl/elisp/nrepl-ritz.el +++ b/nrepl/elisp/nrepl-ritz.el @@ -845,7 +845,7 @@ Full list of commands: ("x" 'nrepl-dbg-step-over) ("o" 'nrepl-dbg-step-out) ("a" 'nrepl-dbg-abort) - ("q" 'nrepl-dbg-quit) + ("q" 'nrepl-dbg-abort) ("P" 'nrepl-dbg-print-exception) ("C" 'nrepl-dbg-inspect-exception) (":" 'nrepl-interactive-eval))