Function: finder-mode
finder-mode is a byte-compiled function defined in finder.el.gz.
Signature
(finder-mode)
Documentation
Major mode for browsing package documentation.
RET (finder-select) more help for the item on the current line
q (finder-exit) exit Finder mode and kill the Finder buffer.
- 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
<follow-link> mouse-face
<mouse-2> finder-mouse-select
> end-of-buffer
? describe-mode
? finder-summary
DEL scroll-down-command
RET finder-select
S-SPC scroll-down-command
SPC finder-select
SPC scroll-up-command
SPC..~ undefined
d finder-list-keywords
f finder-select
g revert-buffer
h describe-mode
n next-line
p previous-line
q finder-exit
q quit-window
In addition to any hooks its parent mode special-mode might have
run, this mode runs the hook finder-mode-hook, as the final or
penultimate step during initialization.
Source Code
;; Defined in /usr/src/emacs/lisp/finder.el.gz
(define-derived-mode finder-mode special-mode "Finder"
"Major mode for browsing package documentation.
\\<finder-mode-map>
\\[finder-select] more help for the item on the current line
\\[finder-exit] exit Finder mode and kill the Finder buffer.
\\{finder-mode-map}"
:interactive nil
(setq-local finder-headmark nil))