Variable: treemacs--persist-kv-regex

treemacs--persist-kv-regex is a variable defined in treemacs-persistence.el.

Value

"^ ?- path :: .+$"

Documentation

The regular expression to match org's "key :: value" lines.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-persistence.el
(defconst treemacs--persist-kv-regex
  (rx bol (? " ") "- path :: " (1+ any) eol)
  "The regular expression to match org's \"key :: value\" lines.")