Variable: hpath:instance-line-column-regexp

hpath:instance-line-column-regexp is a variable defined in hpath.el.

Value

":I\\([-+]?[0-9]+\\)\\(:L?\\([-+]?[0-9]+\\)\\)?\\(:C?\\([-+]?[0-9]+\\)\\)?\\s-*\\'"

Documentation

Regexp matching a trailing instance, optional line, and column number.

Path, instance, line, and column numbers are colon separated. Group 1 is the instance/occurrence number when searching from the buffer start. Group 3 is the 1-based line number. Group 5 is the 0-based column number.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defconst hpath:instance-line-column-regexp
  ":I\\([-+]?[0-9]+\\)\\(:L?\\([-+]?[0-9]+\\)\\)?\\(:C?\\([-+]?[0-9]+\\)\\)?\\s-*\\'"
  "Regexp matching a trailing instance, optional line, and column number.
Path, instance, line, and column numbers are colon separated.  Group 1
is the instance/occurrence number when searching from the buffer start.
Group 3 is the 1-based line number.  Group 5 is the 0-based column number.")