Variable: remember-notes-initial-major-mode

remember-notes-initial-major-mode is a customizable variable defined in remember.el.gz.

Value

nil

Documentation

Major mode to use in the notes buffer when it's created.

If this is nil, use initial-major-mode.

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
(defcustom remember-notes-initial-major-mode nil
  "Major mode to use in the notes buffer when it's created.
If this is nil, use `initial-major-mode'."
  :type '(choice (const    :tag "Use `initial-major-mode'" nil)
                 (const    :tag "Use `remember-initial-major-mode'"
                           remember-initial-major-mode)
                 (function :tag "Major mode" text-mode))
  :version "24.4")