Function: xref-next-group
xref-next-group is an interactive and byte-compiled function defined
in xref.el.gz.
Signature
(xref-next-group)
Documentation
Move to the first item of the next xref group and display its source.
Probably introduced at or before Emacs version 28.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
(defun xref-next-group ()
"Move to the first item of the next xref group and display its source."
(interactive)
(xref--search-property 'xref-group)
(xref--search-property 'xref-item)
(xref-show-location-at-point))