Commit 5d16ccf93790

Vincent Demeester <vincent@sbr.pm>
2020-05-04 20:06:55
config-compile.el: remove duplicate compilation-scroll-output
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 60a3934
Changed files (1)
tools
emacs
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