bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#46119: 28.0.50; this-error-recenter


From: Tino Calancha
Subject: bug#46119: 28.0.50; this-error-recenter
Date: Sat, 30 Jan 2021 21:41:30 +0100 (CET)



On Sat, 30 Jan 2021, Juri Linkov wrote:

Like the existing command scroll-other-window-down bound to 'S-C-M-v',
a new command could be named recenter-other-window bound to 'S-C-l'.
I like that.

(defun this-error-recenter (&optional arg)
  "Recenter the current displayed error in the `next-error' buffer.
If called not from a `next-error' buffer, then it just calls
`recenter-top-bottom' in the other window."
  (interactive "P")
  (if (not (or (eq major-mode 'occur-mode) (derived-mode-p 'compilation-mode)))
      (with-selected-window (other-window-for-scrolling) (recenter-top-bottom 
arg))
    (funcall next-error-function 0 nil)
    (recenter-top-bottom arg)
    (pop-to-buffer next-error-last-buffer)))

But then no special case is needed for occur/compilation-mode.

I expected someone will ask that; I should write my reason in the previous email: I like to see the pulse highlight, as with `next-error-no-select', that's why I call `next-error-function' here. [I customize `next-error-highlight' and `next-error-highlight-no-select' to 3 s]





reply via email to

[Prev in Thread] Current Thread [Next in Thread]