Function: denote-subdirectory

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

Signature

(denote-subdirectory)

Documentation

Create note while prompting for a subdirectory.

Available candidates include the value of the variable denote-directory(var)/denote-directory(fun) and any subdirectory thereof.

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

Key Bindings

Aliases

denote-create-note-in-subdirectory

Source Code

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

Available candidates include the value of the variable
`denote-directory' and any subdirectory thereof.

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