Variable: marginalia-prompt-categories

marginalia-prompt-categories is a customizable variable defined in marginalia.el.

Value

(("\\<customize group\\>" . customize-group) ("\\<M-x\\>" . command)
 ("\\<package\\>" . package) ("\\<bookmark\\>" . bookmark)
 ("\\<color\\>" . color) ("\\<face\\>" . face)
 ("\\<environment variable\\>" . environment-variable)
 ("\\<function\\|\\(?:hook\\|advice\\) to remove\\>" . function)
 ("\\<variable\\>" . variable) ("\\<input method\\>" . input-method)
 ("\\<charset\\>" . charset) ("\\<coding system\\>" . coding-system)
 ("\\<minor mode\\>" . minor-mode) ("\\<kill-ring\\>" . kill-ring)
 ("\\<tab by name\\>" . tab) ("\\<frame\\>" . frame)
 ("\\<library\\>" . library) ("\\<theme\\>" . theme))

Documentation

Associates regexps to match against minibuffer prompts with categories.

The prompts are matched case-insensitively.

Source Code

;; Defined in ~/.emacs.d/elpa/marginalia-20260724.810/marginalia.el
(defcustom marginalia-prompt-categories
  '(("\\<customize group\\>" . customize-group)
    ("\\<M-x\\>" . command)
    ("\\<package\\>" . package)
    ("\\<bookmark\\>" . bookmark)
    ("\\<color\\>" . color)
    ("\\<face\\>" . face)
    ("\\<environment variable\\>" . environment-variable)
    ("\\<function\\|\\(?:hook\\|advice\\) to remove\\>" . function)
    ("\\<variable\\>" . variable)
    ("\\<input method\\>" . input-method)
    ("\\<charset\\>" . charset)
    ("\\<coding system\\>" . coding-system)
    ("\\<minor mode\\>" . minor-mode)
    ("\\<kill-ring\\>" . kill-ring)
    ("\\<tab by name\\>" . tab)
    ("\\<frame\\>" . frame)
    ("\\<library\\>" . library)
    ("\\<theme\\>" . theme))
  "Associates regexps to match against minibuffer prompts with categories.
The prompts are matched case-insensitively."
  :type '(alist :key-type regexp :value-type symbol))