Function: denote-sort-annotate
denote-sort-annotate is a byte-compiled function defined in denote.el.
Signature
(denote-sort-annotate COMPONENT)
Documentation
Annotate COMPONENT for denote-sort-component-prompt.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-sort-annotate (component)
"Annotate COMPONENT for `denote-sort-component-prompt'."
(when-let* ((text (pcase component
("title" "The title of the file name")
("keywords" "The keywords of the file name")
("signature" "The signature of the file name")
("identifier" "The identifier of the file name")
("random" "Random file sort")
("last-modified" "File last modification time"))))
(format "%s-- %s"
(propertize " " 'display '(space :align-to 15))
(propertize text 'face 'completions-annotations))))