Function: denote-signature
denote-signature is an autoloaded, interactive and byte-compiled
function defined in denote.el.
Signature
(denote-signature)
Documentation
Create note while prompting for a file signature.
This is the equivalent of calling denote when denote-prompts
has the signature prompt appended to its existing prompts.
Key Bindings
Aliases
denote-create-note-using-signature
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;;;###autoload
(defun denote-signature ()
"Create note while prompting for a file signature.
This is the equivalent of calling `denote' when `denote-prompts'
has the `signature' prompt appended to its existing prompts."
(declare (interactive-only t))
(interactive)
(let ((denote-prompts (denote-add-prompts '(signature))))
(call-interactively #'denote)))