Function: gnus-category-mode

gnus-category-mode is an interactive and byte-compiled function defined in gnus-agent.el.gz.

Signature

(gnus-category-mode)

Documentation

Major mode for listing and editing agent categories.

All normal editing commands are switched off. For more in-depth information on this mode, read the manual
(C-c TAB (gnus-info-find-node)).

The following commands are available:

- 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
C-c C-b gnus-bug
C-c TAB gnus-info-find-node
SPC..~ undefined
a gnus-category-add
c gnus-category-copy
e gnus-agent-customize-category
g gnus-category-edit-groups
k gnus-category-kill
l gnus-category-list
p gnus-category-edit-predicate
q gnus-category-exit
s gnus-category-edit-score

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

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-agent.el.gz
(define-derived-mode gnus-category-mode gnus-mode "Category"
  "Major mode for listing and editing agent categories.
All normal editing commands are switched off.
\\<gnus-category-mode-map>
For more in-depth information on this mode, read the manual
\(`\\[gnus-info-find-node]').

The following commands are available:

\\{gnus-category-mode-map}"
  (when (gnus-visual-p 'category-menu 'menu)
    (gnus-category-make-menu-bar))
  (gnus-simplify-mode-line)
  (gnus-set-default-directory)
  (setq mode-line-process nil)
  (buffer-disable-undo)
  (setq truncate-lines t))