Variable: org-element--cache-sensitive-re

org-element--cache-sensitive-re is a variable defined in org-element.el.gz.

Value

"^\\*+ \\|\\\\end{[A-Za-z0-9*]+}[       ]*$\\|^[        ]*\\(?:#\\+END\\(?:_\\|:?[      ]*$\\)\\|^[     ]*\\(\\(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)\\(?:[        ]+\\|$\\)\\)\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][         ]*\\)?\\(?:\\(\\[[ X-]\\]\\)\\(?:[      ]+\\|$\\)\\)?\\(?:\\(.*\\)[     ]+::\\(?:[      ]+\\|$\\)\\)?\\|:\\(?: \\|$\\)\\|:\\(?:\\w\\|[-_]\\)+:[         ]*$\\)"

Documentation

Regexp matching a sensitive line, structure wise.

A sensitive line is a headline, inlinetask, block, drawer, or latex-environment boundary. When such a line is modified, structure changes in the document may propagate in the whole section, possibly making cache invalid.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
;;;; Staging Buffer Changes

(defconst org-element--cache-sensitive-re
  (concat
   "^\\*+ " "\\|"
   "\\\\end{[A-Za-z0-9*]+}[ \t]*$" "\\|"
   "^[ \t]*\\(?:"
   "#\\+END\\(?:_\\|:?[ \t]*$\\)" "\\|"
   org-list-full-item-re "\\|"
   ":\\(?: \\|$\\)" "\\|"
   ":\\(?:\\w\\|[-_]\\)+:[ \t]*$"
   "\\)")
  "Regexp matching a sensitive line, structure wise.
A sensitive line is a headline, inlinetask, block, drawer, or
latex-environment boundary.  When such a line is modified,
structure changes in the document may propagate in the whole
section, possibly making cache invalid.")