File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ and try to associate the created connection with this project automatically.
36
36
* ` cider-test ` commands now have keybindings in ` cider-repl-mode ` . The keybindings are exactly the same as those in ` cider-mode ` .
37
37
* Changed the binding of ` cider-apropos-documentation ` to ` C-c C-d f ` and ` C-c C-d C-f ` (it was ` C-c C-d A ` ).
38
38
* [ #1584 ] ( https://github.com/clojure-emacs/cider/issues/1584 ) : Don't enable ` eldoc-mode ` automatically in ` cider-repl-mode ` .
39
+ * [ #1585 ] ( https://github.com/clojure-emacs/cider/issues/1585 ) : Show the eval command in the debugger's prompt.
39
40
40
41
### Bugs fixed
41
42
Original file line number Diff line number Diff line change @@ -218,10 +218,8 @@ Each element of LOCALS should be a list of at least two elements."
218
218
" Return prompt to display for COMMAND-LIST."
219
219
(concat
220
220
(mapconcat (lambda (x ) (put-text-property 0 1 'face 'cider-debug-prompt-face x) x)
221
- ; ; `eval' is now integrated with things like `C-x C-e' and `C-c M-:'
222
- ; ; so we don't advertise this key to reduce clutter.
223
221
; ; `inspect' would conflict with `inject' .
224
- (seq-difference command-list '(" eval " " inspect" )) " " )
222
+ (seq-difference command-list '(" inspect" )) " " )
225
223
" \n " ))
226
224
227
225
(defvar-local cider--debug-prompt-overlay nil )
You can’t perform that action at this time.
0 commit comments