Variable: remember-notes-buffer-name

remember-notes-buffer-name is a customizable variable defined in remember.el.gz.

Value

"*notes*"

Documentation

Name of the notes buffer.

Setting it to *scratch* will hijack the *scratch* buffer for the purpose of storing notes.

This variable was added, or its default value changed, in Emacs 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/remember.el.gz
;; Notes buffer showing the notes:

(defcustom remember-notes-buffer-name "*notes*"
  "Name of the notes buffer.
Setting it to *scratch* will hijack the *scratch* buffer for the
purpose of storing notes."
  :type 'string
  :version "24.4")