Function: etc-authors-mode

etc-authors-mode is an autoloaded, interactive and byte-compiled function defined in etc-authors-mode.el.gz.

Signature

(etc-authors-mode)

Documentation

Major mode for viewing "etc/AUTHORS" from the Emacs distribution.

Provides some basic font locking and not much else.

In addition to any hooks its parent mode special-mode might have run, this mode runs the hook etc-authors-mode-hook, as the final or penultimate step during initialization.

n etc-authors-next-author
p etc-authors-prev-author

Probably introduced at or before Emacs version 28.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/etc-authors-mode.el.gz
;;;###autoload
(define-derived-mode etc-authors-mode special-mode "Authors View"
  "Major mode for viewing \"etc/AUTHORS\" from the Emacs distribution.
Provides some basic font locking and not much else."
  (setq-local font-lock-defaults
              '(etc-authors-mode-font-lock-keywords nil nil ((?_ . "w"))))
  (setq font-lock-multiline nil)
  (etc-authors-mode--hide-local-variables))