Function: xref--completing-read-group
xref--completing-read-group is a byte-compiled function defined in
xref.el.gz.
Signature
(xref--completing-read-group CAND TRANSFORM)
Documentation
Return group title of candidate CAND or TRANSFORM the candidate.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
(defun xref--completing-read-group (cand transform)
"Return group title of candidate CAND or TRANSFORM the candidate."
(if transform
(substring cand (1+ (next-single-property-change 0 'xref--group cand)))
(get-text-property 0 'xref--group cand)))