Variable: denote-buffer-name-prefix

denote-buffer-name-prefix is a customizable variable defined in denote.el.

Value

"[D] "

Documentation

String used as the prefix of all buffer names produced by Denote.

This includes the query links, backlinks, denote-grep, denote-dired buffers, as well as all the regular Denote files whose buffer name gets updated when denote-rename-buffer-mode(var)/denote-rename-buffer-mode(fun) is enabled (that mode uses the denote-rename-buffer-format).

By default, the value of denote-buffer-name-prefix is "[D] ". Users can set it to any string they want, such as "<Denote> ", or even an empty string to not have any such prefix.

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

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defcustom denote-buffer-name-prefix "[D] "
  "String used as the prefix of all buffer names produced by Denote.
This includes the query links, backlinks, `denote-grep', `denote-dired'
buffers, as well as all the regular Denote files whose buffer name gets
updated when `denote-rename-buffer-mode' is enabled (that mode uses the
`denote-rename-buffer-format').

By default, the value of `denote-buffer-name-prefix' is \"[D] \".
Users can set it to any string they want, such as \"<Denote> \", or
even an empty string to not have any such prefix."
  :type 'string
  :package-version '(denote . "4.1.0")
  :group 'denote)