Variable: allout-depth-specific-regexp

allout-depth-specific-regexp is a buffer-local variable defined in allout.el.gz.

Documentation

Regular expression to match a heading line prefix for a particular depth.

This expression is used to search for depth-specific topic headers at depth 2 and greater. Use allout-depth-one-regexp for to seek topics at depth one.

This var is set according to the user configuration vars by allout-set-regexp. It is prepared with format strings for two decimal numbers, which should each be one less than the depth of the topic prefix to be matched.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   = allout-depth-specific-regexp
(defvar-local allout-depth-specific-regexp ""
  "Regular expression to match a heading line prefix for a particular depth.

This expression is used to search for depth-specific topic
headers at depth 2 and greater.  Use `allout-depth-one-regexp'
for to seek topics at depth one.

This var is set according to the user configuration vars by
`allout-set-regexp'.  It is prepared with format strings for two
decimal numbers, which should each be one less than the depth of the
topic prefix to be matched.")