Function: denote-file-type-prompt
denote-file-type-prompt is a byte-compiled function defined in
denote.el.
Signature
(denote-file-type-prompt)
Documentation
Prompt for variable denote-file-type(var)/denote-file-type(fun).
Note that a non-nil value other than text, markdown-yaml, and
markdown-toml falls back to an Org file type. We use org
here for clarity.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-file-type-prompt ()
"Prompt for variable `denote-file-type'.
Note that a non-nil value other than `text', `markdown-yaml', and
`markdown-toml' falls back to an Org file type. We use `org'
here for clarity."
(completing-read
"Select file TYPE: " (denote--file-type-keys) nil t
nil 'denote-file-type-history))