Variable: emacs-news-view-mode-map

emacs-news-view-mode-map is a variable defined in emacs-news-mode.el.gz.

Value

C-c C-b  outline-backward-same-level
C-c C-f  outline-forward-same-level
C-c C-n  outline-next-visible-heading
C-c C-p  outline-previous-visible-heading
C-c C-u  outline-up-heading
C-x C-q  emacs-news-mode

Documentation

Keymap for emacs-news-view-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/emacs-news-mode.el.gz
(defvar emacs-news-view-mode-map
  ;; This is defined this way instead of inheriting because we're
  ;; deriving the mode from `special-mode' and want the keys from there.
  (let ((map (copy-keymap emacs-news-common-map)))
    (keymap-set map "C-x C-q" #'emacs-news-mode)
    map))