Variable: klink:cell-ref-regexp
klink:cell-ref-regexp is a variable defined in klink.el.
Value
"[0-9a-zA-Z][.*~=0-9a-zA-Z \n
]*\\s-*,\\s-*[|:.*~=0-9a-zA-Z \n
]+\\|[|: 0-9a-zA-Z][|:.*~=0-9a-zA-Z \n
]*"
Documentation
Regexp matching a cell reference including relative and view specs.
Contains no groupings.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klink.el
;;; ************************************************************************
;;; Private variables
;;; ************************************************************************
(defvar klink:cell-ref-regexp
(concat "[0-9a-zA-Z][.*~=0-9a-zA-Z \t\n\r]*\\s-*,\\s-*"
"[|:.*~=0-9a-zA-Z \t\n\r]+"
"\\|[|: 0-9a-zA-Z][|:.*~=0-9a-zA-Z \t\n\r]*")
"Regexp matching a cell reference including relative and view specs.
Contains no groupings.")