Variable: denote-save-buffers
denote-save-buffers is a customizable variable defined in denote.el.
Value
nil
Documentation
Control whether to save buffers automatically.
This applies to commands that create new notes, such as denote, or
those that rename existing files, such as denote-rename-file.
By default (a nil value), Denote does not save such buffers, giving users the chance to review the text before writing it to the file.
When the value is non-nil, Denote will automatically save the buffers it modifies.
Also see denote-kill-buffers.
This variable was added, or its default value changed, in denote version 3.0.0.
Aliases
denote-save-buffer-after-creation (obsolete since 3.0.0)
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defcustom denote-save-buffers nil
"Control whether to save buffers automatically.
This applies to commands that create new notes, such as `denote', or
those that rename existing files, such as `denote-rename-file'.
By default (a nil value), Denote does not save such buffers, giving
users the chance to review the text before writing it to the file.
When the value is non-nil, Denote will automatically save the buffers it
modifies.
Also see `denote-kill-buffers'."
:group 'denote
:package-version '(denote . "3.0.0")
:type 'boolean)