Function: denote-type

denote-type is an autoloaded, interactive and byte-compiled function defined in denote.el.

Signature

(denote-type)

Documentation

Create note while prompting for a file type.

This is the equivalent of calling denote when denote-prompts has the file-type prompt appended to its existing prompts.

Key Bindings

Aliases

denote-create-note-using-type

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;;;###autoload
(defun denote-type ()
  "Create note while prompting for a file type.

This is the equivalent of calling `denote' when `denote-prompts'
has the `file-type' prompt appended to its existing prompts."
  (declare (interactive-only t))
  (interactive)
  (let ((denote-prompts (denote-add-prompts '(file-type))))
    (call-interactively #'denote)))