Function: help-mode
help-mode is an autoloaded, interactive and byte-compiled function
defined in help-mode.el.gz.
Signature
(help-mode)
Documentation
Major mode for viewing help text and navigating references in it.
Also see the help-enable-variable-value-editing variable.
Commands:
- negative-argument
0 digit-argument
1 digit-argument
2 digit-argument
3 digit-argument
4 digit-argument
5 digit-argument
6 digit-argument
7 digit-argument
8 digit-argument
9 digit-argument
< beginning-of-buffer
<XF86Back> help-go-back
<XF86Forward> help-go-forward
<keymap> C-M-i backward-button
<keymap> TAB forward-button
> end-of-buffer
? describe-mode
C-c C-b help-go-back
C-c C-c help-follow-symbol
C-c C-f help-go-forward
DEL scroll-down-command
I help-goto-lispref-info
S-SPC scroll-down-command
SPC scroll-up-command
SPC..~ undefined
c help-customize
g revert-buffer
h describe-mode
i help-goto-info
l help-go-back
n help-goto-next-page
p help-goto-previous-page
q quit-window
r help-go-forward
s help-view-source
In addition to any hooks its parent mode special-mode might have run,
this mode runs the hook help-mode-hook, as the final or penultimate
step during initialization.
Probably introduced at or before Emacs version 19.30.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
;;;###autoload
(define-derived-mode help-mode special-mode "Help"
"Major mode for viewing help text and navigating references in it.
Also see the `help-enable-variable-value-editing' variable.
Commands:
\\{help-mode-map}"
(setq-local revert-buffer-function
#'help-mode-revert-buffer)
(add-hook 'context-menu-functions #'help-mode-context-menu 5 t)
(setq-local tool-bar-map
help-mode-tool-bar-map)
(setq-local help-mode--current-data nil)
(setq-local bookmark-make-record-function
#'help-bookmark-make-record)
(unless search-default-mode
(isearch-fold-quotes-mode)))