summaryrefslogtreecommitdiff
path: root/cider-debug.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-02-26 09:22:12 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2016-02-26 09:22:12 +0200
commit89894cbda073257fe2cbe28969922a961975db92 (patch)
tree3e672023dc1fde5944cbe95111e35d050762c751 /cider-debug.el
parent8fccc91382bcbd4baa424033eac39bd09705673d (diff)
[Fix #1585] Show the eval command in the debugger's prompt
Diffstat (limited to 'cider-debug.el')
-rw-r--r--cider-debug.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/cider-debug.el b/cider-debug.el
index 0f4acf49..352eeb90 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -218,10 +218,8 @@ Each element of LOCALS should be a list of at least two elements."
"Return prompt to display for COMMAND-LIST."
(concat
(mapconcat (lambda (x) (put-text-property 0 1 'face 'cider-debug-prompt-face x) x)
- ;; `eval' is now integrated with things like `C-x C-e' and `C-c M-:'
- ;; so we don't advertise this key to reduce clutter.
;; `inspect' would conflict with `inject'.
- (seq-difference command-list '("eval" "inspect")) " ")
+ (seq-difference command-list '("inspect")) " ")
"\n"))
(defvar-local cider--debug-prompt-overlay nil)