Variable: describe-bindings-outline-rules

describe-bindings-outline-rules is a customizable variable defined in help.el.gz.

Value

((match-regexp . "Key translations"))

Documentation

Visibility rules for outline sections of describe-bindings.

This is used as the value of outline-default-rules in the output buffer of describe-bindings when describe-bindings-outline is non-nil, otherwise this option doesn't have any effect.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/help.el.gz
(defcustom describe-bindings-outline-rules '((match-regexp . "Key translations"))
  "Visibility rules for outline sections of `describe-bindings'.
This is used as the value of `outline-default-rules' in the
output buffer of `describe-bindings' when
`describe-bindings-outline' is non-nil, otherwise this option
doesn't have any effect."
  :type '(choice (const :tag "Hide unconditionally" nil)
                 (set :tag "Show section unless"
                      (cons :tag "Heading matches regexp"
                            (const match-regexp)  string)
                      (cons :tag "Custom function to show/hide sections"
                            (const custom-function) function)))
  :group 'help
  :version "30.1")