Variable: message-mode-menu

message-mode-menu is a variable defined in message.el.gz.

Value

<nil-16>  nil
<nil-21>  nil
<nil>     nil

Documentation

Message Menu.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(easy-menu-define message-mode-menu message-mode-map
  "Message Menu."
  '("Message"
    ["Yank Original" message-yank-original
     :active message-reply-buffer]
    ["Fill Yanked Message" message-fill-yanked-message]
    ["Insert Signature" message-insert-signature]
    ["Caesar (rot13) Message" message-caesar-buffer-body]
    ["Caesar (rot13) Region" message-caesar-region
     :active mark-active]
    ["Elide Region" message-elide-region
     :active mark-active
     :help "Replace text in region with an ellipsis"]
    ["Delete Outside Region" message-delete-not-region
     :active mark-active
     :help "Delete all quoted text outside region"]
    ["Kill To Signature" message-kill-to-signature]
    ["Newline and Reformat" message-newline-and-reformat]
    ["Rename buffer" message-rename-buffer]
    ["Spellcheck" ispell-message
     :help "Spellcheck this message"]
    "----"
    ["Insert Region Marked" message-mark-inserted-region
     :active mark-active
     :help "Mark region with enclosing tags"]
    ["Insert File Marked..." message-mark-insert-file
     :help "Insert file at point marked with enclosing tags"]
    ["Attach File..." mml-attach-file]
    ["Insert Screenshot" message-insert-screenshot]
    "----"
    ["Send Message" message-send-and-exit
     :help "Send this message"]
    ["Postpone Message" message-dont-send
     :help "File this draft message and exit"]
    ["Send at Specific Time..." gnus-delay-article
     :help "Ask, then arrange to send message at that time"]
    ["Kill Message" message-kill-buffer
     :help "Delete this message without sending"]
    "----"
    ["Message manual" message-info
     :help "Display the Message manual"]))