Variable: Man-mode-abbrev-table

Man-mode-abbrev-table is a variable defined in man.el.gz.

Value

#<obarray n=1>

Documentation

Abbrev table for Man-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
(define-derived-mode Man-mode man-common "Man"
  "A mode for browsing Un*x manual pages.

The following man commands are available in the buffer:
\\<Man-mode-map>
\\[man]       Prompt to retrieve a new manpage.
\\[Man-follow-manual-reference]       Retrieve reference in SEE ALSO section.
\\[Man-next-manpage]     Jump to next manpage in circular list.
\\[Man-previous-manpage]     Jump to previous manpage in circular list.
\\[Man-next-section]       Jump to next manpage section.
\\[Man-previous-section]       Jump to previous manpage section.
\\[Man-goto-section]       Go to a manpage section.
\\[Man-goto-see-also-section]       Jump to the SEE ALSO manpage section.
\\[quit-window]       Delete the manpage window, bury its buffer.
\\[Man-kill]       Delete the manpage window, kill its buffer.
\\[describe-mode]       Print this help text.

The following variables may be of some use:

`Man-notify-method'		What happens when manpage is ready to display.
`Man-downcase-section-letters-flag' Force section letters to lower case.
`Man-circular-pages-flag'	Treat multiple manpage list as circular.
`Man-section-translations-alist' List of section numbers and their Un*x equiv.
`Man-filter-list'		Background manpage filter command.
`Man-mode-map'			Keymap bindings for Man mode buffers.
`Man-mode-hook'			Normal hook run on entry to Man mode.
`Man-section-regexp'		Regexp describing manpage section letters.
`Man-heading-regexp'		Regexp describing section headers.
`Man-see-also-regexp'		Regexp for SEE ALSO section (or your equiv).
`Man-first-heading-regexp'	Regexp for first heading on a manpage.
`Man-reference-regexp'		Regexp matching a references in SEE ALSO.
`Man-switches'			Background `man' command switches.

The following key bindings are currently in effect in the buffer:
\\{Man-mode-map}"
  (setq buffer-auto-save-file-name nil
	mode-line-buffer-identification
	(list (default-value 'mode-line-buffer-identification)
	      " {" 'Man-page-mode-string "}")
	truncate-lines t)
  (buffer-disable-undo)
  (auto-fill-mode -1)
  (setq imenu-generic-expression (list (list nil Man-heading-regexp 0)))
  (imenu-add-to-menubar man-imenu-title)
  (setq-local outline-regexp Man-heading-regexp)
  (setq-local outline-level (lambda () 1))
  (setq-local bookmark-make-record-function
              #'Man-bookmark-make-record)
  (add-hook 'window-state-change-functions #'Man--window-state-change nil t))