Variable: cider-repl-preoutput-hook
cider-repl-preoutput-hook is a variable defined in cider-repl.el.
Value
(ansi-color-apply
cider-repl-highlight-current-project
cider-repl-highlight-spec-keywords
cider-repl-add-locref-help-echo)
Documentation
Hook run on output string before it is inserted into the REPL buffer.
Each functions takes a string and must return a modified string. Also see
cider-run-chained-hook.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defvar cider-repl-preoutput-hook `(,(if (< emacs-major-version 29)
'cider-repl--ansi-color-apply
'ansi-color-apply)
cider-repl-highlight-current-project
cider-repl-highlight-spec-keywords
cider-repl-add-locref-help-echo)
"Hook run on output string before it is inserted into the REPL buffer.
Each functions takes a string and must return a modified string. Also see
`cider-run-chained-hook'.")