Function: denote-file-prompt-affixate

denote-file-prompt-affixate is a byte-compiled function defined in denote.el.

Signature

(denote-file-prompt-affixate FILES)

Documentation

Affixate FILES.

Use the identifier as a prefix and the keywords as a suffix.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-file-prompt-affixate (files)
  "Affixate FILES.
Use the identifier as a prefix and the keywords as a suffix."
  (mapcar
   (lambda (file)
     (list
      file
      (or (denote-file-prompt--format-identifier file) "")
      (or (denote-file-prompt--format-keywords-and-signature file) "")))
   files))