Variable: cider-annotate-completion-function
cider-annotate-completion-function is a customizable variable defined
in cider-completion.el.
Value
cider-default-annotate-completion-function
Documentation
Controls how the annotations for completion candidates are formatted.
Must be a function that takes two arguments: the abbreviation of the
candidate type according to cider-completion-annotations-alist and the
candidate's namespace.
This variable was added, or its default value changed, in cider version 0.9.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-completion.el
(defcustom cider-annotate-completion-function
#'cider-default-annotate-completion-function
"Controls how the annotations for completion candidates are formatted.
Must be a function that takes two arguments: the abbreviation of the
candidate type according to `cider-completion-annotations-alist' and the
candidate's namespace."
:type 'function
:group 'cider
:package-version '(cider . "0.9.0"))