Function: cider-repl-highlight-current-project

cider-repl-highlight-current-project is a byte-compiled function defined in cider-repl.el.

Signature

(cider-repl-highlight-current-project STRING)

Documentation

Fontify project's root namespace to make stacktraces more readable.

Foreground of cider-stacktrace-ns-face is used to propertize matched namespaces. STRING is REPL's output.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-highlight-current-project (string)
  "Fontify project's root namespace to make stacktraces more readable.
Foreground of `cider-stacktrace-ns-face' is used to propertize matched
namespaces.  STRING is REPL's output."
  (cider-add-face cider-repl--root-ns-regexp 'cider-stacktrace-ns-face
                  t nil string)
  string)