From 4373da0b4e8cee23c53b5e46f28d69e9b6e444ed Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 20 Aug 2020 16:41:50 +0200 Subject: [PATCH] Bind 'n' and 'p' in compilation-mode-map * lisp/progmodes/compile.el (compilation-mode-map): Bind '(next|previous)-error-no-select' to 'n' and 'p'. (Bug#41844) --- lisp/progmodes/compile.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 0b9f417845..2805f644e9 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -2064,6 +2064,8 @@ compilation-mode-map (define-key map "\M-p" 'compilation-previous-error) (define-key map "\M-{" 'compilation-previous-file) (define-key map "\M-}" 'compilation-next-file) + (define-key map "n" 'next-error-no-select) + (define-key map "p" 'previous-error-no-select) (define-key map "\t" 'compilation-next-error) (define-key map [backtab] 'compilation-previous-error) (define-key map "g" 'recompile) ; revert -- 2.28.0