recompile, don't pop up again

This commit is contained in:
Benson Chu 2023-02-01 15:48:33 -06:00
parent 6fae2c7bc9
commit f39ecb4f41

View file

@ -72,5 +72,13 @@ commands of Compilation major mode are available. See
:after
#'my/compilation-start-should-goto-end-of-buffer)
(defun my/recompile-save-windows (fun &rest args)
(save-window-excursion
(apply fun args)))
(advice-add #'recompile
:around
#'my/recompile-save-windows)
(provide 'my-comp-minor-mode)
;;; my-comp-minor-mode.el ends here