We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa726ce commit d7c6a9fCopy full SHA for d7c6a9f
cider-debug.el
@@ -401,13 +401,10 @@ message."
401
(if (symbolp last-command-event)
402
(symbol-name last-command-event)
403
(ignore-errors
404
- (nrepl-dict-get cider--debug-mode-commands-dict
405
- (downcase (string last-command-event)))))
+ (concat ":" (nrepl-dict-get cider--debug-mode-commands-dict
+ (downcase (string last-command-event))))))
406
nil
407
(cider--uppercase-command-p)))
408
- (unless (or (string-prefix-p ":" command)
409
- (string-prefix-p "{" command))
410
- (setq command (concat ":" command)))
411
(when (and (string-prefix-p ":" command) force)
412
(setq command (format "{:response %s :force? true}" command)))
413
(cider-nrepl-send-unhandled-request
0 commit comments