Variable: org-roam-bracket-completion-re

org-roam-bracket-completion-re is a variable defined in org-roam-node.el.

Value

"\\[\\[\\(\\(?:roam:\\)?\\)\\([^z-a]*?\\)]]"

Documentation

Regex for completion within link brackets.

We use this as a substitute for org-link-bracket-re, because org-link-bracket-re requires content within the brackets for a match.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
;;;;;; Completion-at-point interface
(defconst org-roam-bracket-completion-re
  "\\[\\[\\(\\(?:roam:\\)?\\)\\([^z-a]*?\\)]]"
  "Regex for completion within link brackets.
We use this as a substitute for `org-link-bracket-re', because
`org-link-bracket-re' requires content within the brackets for a match.")