Function: denote-command-prompt

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

Signature

(denote-command-prompt)

Documentation

Prompt for command among denote-commands-for-new-notes.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-command-prompt ()
  "Prompt for command among `denote-commands-for-new-notes'."
  (let ((default (car denote-command-prompt-history)))
    (intern
     (completing-read
      (format-prompt "Run note-creating Denote command" default)
      (denote-get-completion-table denote-commands-for-new-notes '(category . command))
       nil t nil 'denote-command-prompt-history default))))