Variable: denote-dired-directories

denote-dired-directories is a customizable variable defined in denote.el.

Value

("/root/Documents/notes/")

Documentation

List of directories where denote-dired-mode(var)/denote-dired-mode(fun) should apply to.

For this to take effect, add denote-dired-mode-in-directories, to the dired-mode-hook.

If denote-dired-directories-include-subdirectories is non-nil, also apply the effect to all subdirectories of those specified in the list.

This variable was added, or its default value changed, in denote version 0.1.0.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defcustom denote-dired-directories (if (listp denote-directory)
                                        denote-directory
                                      (list denote-directory))
  "List of directories where `denote-dired-mode' should apply to.
For this to take effect, add `denote-dired-mode-in-directories',
to the `dired-mode-hook'.

If `denote-dired-directories-include-subdirectories' is non-nil,
also apply the effect to all subdirectories of those specified in
the list."
  :type '(repeat directory)
  :package-version '(denote . "0.1.0")
  :link '(info-link "(denote) Fontification in Dired")
  :group 'denote-dired)