Variable: nroff-mode-menu
nroff-mode-menu is a variable defined in nroff-mode.el.gz.
Value
<Electric newline mode> <:toggle> nroff-electric-mode(var)/nroff-electric-mode(fun)
Documentation
Menu for nroff-mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/nroff-mode.el.gz
(easy-menu-define nroff-mode-menu nroff-mode-map
"Menu for `nroff-mode'."
'("Nroff"
["Preview as man page" nroff-view
:help "Run man on this file."]
["Electric newline mode" nroff-electric-mode
:help "Auto insert closing requests if necessary"
:style toggle
:selected nroff-electric-mode]
["Backward text line" nroff-backward-text-line
:help "Go backward one nroff text line, skipping lines of nroff requests"]
["Forward text line" nroff-forward-text-line
:help "Go forward one nroff text line, skipping lines of nroff requests"]
["Count text lines" nroff-count-text-lines
:help "Count lines in region, except for nroff request lines."]
["Newline" nroff-electric-newline
:help "Insert newline for nroff mode; special if nroff-electric mode"]))