Variable: gnus-registry-marks

gnus-registry-marks is a variable defined in gnus-registry.el.gz.

Value

((Important :char 105 :image "summary_important")
 (Work :char 119 :image "summary_work")
 (Personal :char 112 :image "summary_personal")
 (To-Do :char 116 :image "summary_todo")
 (Later :char 108 :image "summary_later"))

Documentation

List of registry marks and their options.

gnus-registry-set-article-mark will offer symbols from this list for completion.

Each entry must have a character to be useful for summary mode line display and for keyboard shortcuts.

Each entry must have an image string to be useful for visual display.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
(defvar gnus-registry-marks
  '((Important
     :char ?i
     :image "summary_important")
    (Work
     :char ?w
     :image "summary_work")
    (Personal
     :char ?p
     :image "summary_personal")
    (To-Do
     :char ?t
     :image "summary_todo")
    (Later
     :char ?l
     :image "summary_later"))

  "List of registry marks and their options.

`gnus-registry-set-article-mark' will offer symbols from this list
for completion.

Each entry must have a character to be useful for summary mode
line display and for keyboard shortcuts.

Each entry must have an image string to be useful for visual
display.")