Function: emacs-news-mode

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

Signature

(emacs-news-mode)

Documentation

Major mode for editing the Emacs NEWS file.

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

C-c C-b outline-backward-same-level
C-c C-d emacs-news-delete-temporary-markers
C-c C-e emacs-news-count-untagged-entries
C-c C-f outline-forward-same-level
C-c C-g emacs-news-goto-section
C-c C-j emacs-news-find-heading
C-c C-n outline-next-visible-heading
C-c C-p outline-previous-visible-heading
C-c C-r emacs-news-previous-untagged-entry
C-c C-s emacs-news-next-untagged-entry
C-c C-t emacs-news-cycle-tag
C-c C-u outline-up-heading
C-o emacs-news-open-line
C-x C-q emacs-news-view-mode

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/emacs-news-mode.el.gz
;;;###autoload
(define-derived-mode emacs-news-mode text-mode "NEWS"
  "Major mode for editing the Emacs NEWS file."
  ;; Disable buttons.
  (button-mode nil)
  ;; And make the buffer writable.  This is used when toggling
  ;; emacs-news-mode.
  (setq buffer-read-only nil)
  (setq-local fill-paragraph-function #'emacs-news--fill-paragraph)
  (emacs-news--mode-common))