Function: cider-propertize
cider-propertize is a byte-compiled function defined in cider-util.el.
Signature
(cider-propertize TEXT KIND)
Documentation
Propertize TEXT as KIND.
KIND can be the symbols ns, var, emph, fn, or a face name.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-propertize (text kind)
"Propertize TEXT as KIND.
KIND can be the symbols `ns', `var', `emph', `fn', or a face name."
(propertize text 'face (pcase kind
(`fn 'font-lock-function-name-face)
(`method 'font-lock-function-name-face)
(`special-form 'font-lock-keyword-face)
(`macro 'font-lock-keyword-face)
(`var 'font-lock-variable-name-face)
(`ns 'font-lock-type-face)
(`emph 'font-lock-keyword-face)
(face face))))