Function: cape--abbrev-annotation
cape--abbrev-annotation is a byte-compiled function defined in
cape.el.
Signature
(cape--abbrev-annotation ABBREV)
Documentation
Annotate ABBREV with expansion.
Source Code
;; Defined in ~/.emacs.d/elpa/cape-20260804.2303/cape.el
(defun cape--abbrev-annotation (abbrev)
"Annotate ABBREV with expansion."
(concat " "
(truncate-string-to-width
(format
"%s"
(symbol-value
(cl-loop for x in (abbrev--suggest-get-active-tables-including-parents)
thereis (abbrev--symbol abbrev x))))
30 0 nil t)))