From aa5ef6ec72b9ba1d436877257be0d20fc9b3cb2f Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Sun, 21 Nov 2021 14:39:12 +0000 Subject: [PATCH] feat(emacs): set the completion in emacs to scroll When running the compile command in emacs the buffer dose not scroll with the output by default. This now set it to follow the output so you can see the full output as it happened not just the final result. --- site-modules/core/files/emacs/src/development.el | 1 + 1 file changed, 1 insertion(+) diff --git a/site-modules/core/files/emacs/src/development.el b/site-modules/core/files/emacs/src/development.el index 35bf12f..1a7f820 100644 --- a/site-modules/core/files/emacs/src/development.el +++ b/site-modules/core/files/emacs/src/development.el @@ -110,6 +110,7 @@ (setq-default fill-column 80) (setq-default display-fill-column-indicator-column 80) +(setq compilation-scroll-output 'first-error) ;; Set the default line number style to relative so when they are turned on I ;; dont need to worry about that