diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-11T21·36+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-14T17·43+0000 |
commit | cae274808f85728d80a7968b710f293c24e1c821 (patch) | |
tree | 26f5ada528fc6697b37d54fad275ddaffbc84193 /users/tazjin | |
parent | ed68ba675191bc3da57019b14609deb713247821 (diff) |
fix(tazjin/emacs): suppress emacs warnings in warnings buffer r/3823
Change-Id: I78e431da01dc900344044f1571e35565f8361f3a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5281 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/emacs/config/look-and-feel.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/tazjin/emacs/config/look-and-feel.el b/users/tazjin/emacs/config/look-and-feel.el index 8cca6e1bf08e..72665d00c67f 100644 --- a/users/tazjin/emacs/config/look-and-feel.el +++ b/users/tazjin/emacs/config/look-and-feel.el @@ -119,4 +119,13 @@ ;; Don't wrap around when moving between buffers (setq windmove-wrap-around nil) +;; Don't show me all emacs warnings immediately. Unfortunately this is +;; not very granular, as emacs displays most of its warnings in the +;; `emacs' "category", but without it every time I +;; fullscreen/unfullscreen the warning buffer destroys my layout. +;; +;; Warnings suppressed by this are still logged to the warnings +;; buffer. +(setq warning-suppress-types '((emacs))) + (provide 'look-and-feel) |