Function: cider--debug-propertize-prompt-commands
cider--debug-propertize-prompt-commands is a byte-compiled function
defined in cider-debug.el.
Signature
(cider--debug-propertize-prompt-commands)
Documentation
In-place format the command display names for the cider-debug-prompt overlay.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defun cider--debug-propertize-prompt-commands ()
"In-place format the command display names for the `cider-debug-prompt' overlay."
(mapc (lambda (spec)
(pcase-let ((`(,char ,_cmd ,disp-name) spec))
(when-let* ((pos (seq-position disp-name char)))
(put-text-property pos (1+ pos) 'face 'cider-debug-prompt-face disp-name))))
cider-debug-prompt-commands))