home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5d16ccf937906cc814af0b593a1dbb984f87dd38
parent 60a39342d82a73b32f8d69d9c7a3fb6d6c7f93a5
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon,  4 May 2020 20:06:55 +0200

config-compile.el: remove duplicate compilation-scroll-output

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-compile.el | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/emacs/config/config-compile.el b/tools/emacs/config/config-compile.el @@ -27,7 +27,7 @@ ;; I'm not scared of saving everything. compilation-ask-about-save nil ;; Automatically scroll and jump to the first error - compilation-scroll-output 'next-error + ;; compilation-scroll-output 'next-error ;; compilation-scroll-output 'first-error ;; compilation-auto-jump-to-first-error t ;; Skip over warnings and info messages in compilation @@ -35,7 +35,8 @@ ;; Don't freeze when process reads from stdin compilation-disable-input t ;; Show three lines of context around the current message - compilation-context-lines 3) + compilation-context-lines 3 + ) (add-hook 'compilation-filter-hook #'vde/colorize-compilation-buffer) (add-hook 'compilation-mode-hook #'vde/goto-address-mode)) ;; -UseCompile