Variable: cider-completion-annotations-alist
cider-completion-annotations-alist is a customizable variable defined
in cider-completion.el.
Value
(("class" "c") ("field" "fi") ("function" "f") ("import" "i")
("keyword" "k") ("local" "l") ("macro" "m") ("method" "me")
("namespace" "n") ("protocol" "p") ("protocol-function" "pf")
("record" "r") ("special-form" "s") ("static-field" "sf")
("static-method" "sm") ("type" "t") ("var" "v"))
Documentation
Controls the abbreviations used when annotating completion candidates.
Must be a list of elements with the form (TYPE . ABBREVIATION), where TYPE is a possible value of the candidate's type returned from the completion backend, and ABBREVIATION is a short form of that type.
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-completion-annotations-alist
'(("class" "c")
("field" "fi")
("function" "f")
("import" "i")
("keyword" "k")
("local" "l")
("macro" "m")
("method" "me")
("namespace" "n")
("protocol" "p")
("protocol-function" "pf")
("record" "r")
("special-form" "s")
("static-field" "sf")
("static-method" "sm")
("type" "t")
("var" "v"))
"Controls the abbreviations used when annotating completion candidates.
Must be a list of elements with the form (TYPE . ABBREVIATION), where TYPE
is a possible value of the candidate's type returned from the completion
backend, and ABBREVIATION is a short form of that type."
:type '(alist :key-type string :value-type string)
:group 'cider
:package-version '(cider . "0.9.0"))