Backport: xref--next-error-function: Move xref's window point
* lisp/progmodes/xref.el (xref--next-error-function): Move
xref's window point if it's visible. When we don't do that,
navigation can start looping after a while.
(cherry picked from commit 108ce84432)
This commit is contained in:
@@ -692,6 +692,10 @@ references displayed in the current *xref* buffer."
|
|||||||
(dotimes (_ n)
|
(dotimes (_ n)
|
||||||
(setq xref (xref--search-property 'xref-item backward)))
|
(setq xref (xref--search-property 'xref-item backward)))
|
||||||
(cond (xref
|
(cond (xref
|
||||||
|
;; Save the current position (when the buffer is visible,
|
||||||
|
;; it gets reset to that window's point from time to time).
|
||||||
|
(let ((win (get-buffer-window (current-buffer))))
|
||||||
|
(and win (set-window-point win (point))))
|
||||||
(xref--show-location (xref-item-location xref) t))
|
(xref--show-location (xref-item-location xref) t))
|
||||||
(t
|
(t
|
||||||
(error "No %s xref" (if backward "previous" "next"))))))
|
(error "No %s xref" (if backward "previous" "next"))))))
|
||||||
|
|||||||
Reference in New Issue
Block a user