Display *Warnings* buffer in main workspace after startup #319
The creation of the main workspace would swallow the Warnings buffer, so we forcibly display it (if it exists) on startup.
This commit is contained in:
parent
c6764e0f24
commit
b3b31e4bd4
2 changed files with 5 additions and 8 deletions
|
@ -146,10 +146,6 @@ ability to invoke the debugger in debug mode."
|
|||
;;;
|
||||
;; Initialize
|
||||
(eval-and-compile
|
||||
;; Defer warnings during the Doom startup process, giving other modules more
|
||||
;; time to initialize and make mistakes.
|
||||
(remove-hook 'delayed-warnings-hook #'display-delayed-warnings)
|
||||
|
||||
(defvar doom--file-name-handler-alist file-name-handler-alist)
|
||||
(unless (or after-init-time noninteractive)
|
||||
;; One of the contributors to long startup times is the garbage collector,
|
||||
|
@ -188,9 +184,6 @@ ability to invoke the debugger in debug mode."
|
|||
(dolist (hook '(doom-init-hook doom-post-init-hook))
|
||||
(run-hook-wrapped hook #'doom-try-run-hook hook)))
|
||||
|
||||
;; We're ready to display warnings now.
|
||||
(add-hook 'delayed-warnings-hook #'display-delayed-warnings t)
|
||||
|
||||
;; If you forget to reset this, you'll get stuttering and random freezes!
|
||||
(setq gc-cons-threshold 16777216
|
||||
gc-cons-percentage 0.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue