Variable: message-tool-bar

message-tool-bar is a customizable variable defined in message.el.gz.

Value

((ispell-message "spell" nil :vert-only t :visible (not flyspell-mode))
 (flyspell-buffer "spell" t :vert-only t :visible flyspell-mode :help
		  "Flyspell whole buffer")
 (message-send-and-exit "mail/send" t :label "Send")
 (message-dont-send "mail/save-draft")
 (mml-attach-file "attach" mml-mode-map :vert-only t)
 (mml-preview "mail/preview" mml-mode-map)
 (mml-secure-message-sign-encrypt "lock" mml-mode-map :visible nil)
 (message-insert-importance-high "important" nil :visible nil)
 (message-insert-importance-low "unimportant" nil :visible nil)
 (message-insert-disposition-notification-to "receipt" nil :visible
					     nil))

Documentation

Specifies the message mode tool bar.

It can be either a list or a symbol referring to a list. See gmm-tool-bar-from-list for the format of the list. The default key map is message-mode-map.

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

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-tool-bar
  '((ispell-message "spell" nil
		    :vert-only t
		    :visible (not flyspell-mode))
    (flyspell-buffer "spell" t
		     :vert-only t
		     :visible flyspell-mode
		     :help "Flyspell whole buffer")
    (message-send-and-exit "mail/send" t :label "Send")
    (message-dont-send "mail/save-draft")
    (mml-attach-file "attach" mml-mode-map :vert-only t)
    (mml-preview "mail/preview" mml-mode-map)
    (mml-secure-message-sign-encrypt "lock" mml-mode-map :visible nil)
    (message-insert-importance-high "important" nil :visible nil)
    (message-insert-importance-low "unimportant" nil :visible nil)
    (message-insert-disposition-notification-to "receipt" nil :visible nil))
  "Specifies the message mode tool bar.

It can be either a list or a symbol referring to a list.  See
`gmm-tool-bar-from-list' for the format of the list.  The
default key map is `message-mode-map'."
  :type '(choice (repeat :tag "User defined list" gmm-tool-bar-item)
		 (symbol))
  :version "29.1"
  :group 'message)