Variable: woman-imenu-generic-expression

woman-imenu-generic-expression is a customizable variable defined in woman.el.gz.

Value

((nil "\n\\([A-Z].*\\)" 1)
 ("*Subsections*" "^   \\([A-Z].*\\)" 1))

Documentation

Imenu support for Sections and Subsections.

An alist with elements of the form (MENU-TITLE REGEXP INDEX) -- see the documentation for imenu-generic-expression.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defcustom woman-imenu-generic-expression
  '((nil "\n\\([A-Z].*\\)" 1) ; SECTION, but not TITLE
    ("*Subsections*" "^   \\([A-Z].*\\)" 1))
  "Imenu support for Sections and Subsections.
An alist with elements of the form (MENU-TITLE REGEXP INDEX) --
see the documentation for `imenu-generic-expression'."
  :type '(alist :key-type (choice :tag "Title" (const nil) string)
                :value-type (group (choice (regexp :tag "Regexp")
                                           function)
                                   integer))
  :group 'woman-interface)