Skip to content

Commit

Permalink
Hypothetical fix -- downgrade to warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosemer committed Dec 9, 2023
1 parent da1558e commit 617d12d
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions window.el
Original file line number Diff line number Diff line change
Expand Up @@ -45,30 +45,30 @@
(copy-tree '(window-parameters (no-other-window . t))))

(let ((bottom-windows ; Extremely transient windows
(list "\\*Apropos\\*"
"\\*Async Shell Command\\*"
"\\*Backtrace\\*"
"\\*Buffer List\\*"
"\\*Checkdoc Status\\*"
"\\*Completions\\*"
"\\*Compile-Log\\*"
"\\*Deletions\\*"
"\\*Help\\*"
"\\*Local Variables\\*"
"\\*Message\\*"
"\\*Messages\\*"
"\\*Multiple Choice Help\\*"
"\\*Occur\\*"
"\\*RE-Builder\\*"
"\\*Shell Command Output\\*"
"\\*Warnings\\*"
"\\*compilation\\*"
"\\*grep\\*"
"\\*vc-git : "
"\\*xref\\*"))
(list "^\\*Apropos\\*$"
"^\\*Async Shell Command\\*$"
"^\\*Backtrace\\*$"
"^\\*Buffer List\\*$"
"^\\*Checkdoc Status\\*$"
"^\\*Completions\\*$"
"^\\*Compile-Log\\*$"
"^\\*Deletions\\*$"
"^\\*Help\\*$"
"^\\*Local Variables\\*$"
"^\\*Message\\*$"
"^\\*Messages\\*$"
"^\\*Multiple Choice Help\\*$"
"^\\*Occur\\*$"
"^\\*RE-Builder\\*$"
"^\\*Shell Command Output\\*$"
"^\\*Warnings\\*$"
"^\\*compilation\\*$"
"^\\*grep\\*$"
"^\\*vc-git : "
"^\\*xref\\*$"))
(left-windows ; VC prompts
(list "\\*Open Recent - More\\*"
"\\*vc-dir\\*"
(list "^\\*Open Recent - More\\*$"
"^\\*vc-dir\\*$"
'(derived-mode . dired-mode))))
(setf display-buffer-alist
(append (mapcar (lambda (buffer)
Expand Down

0 comments on commit 617d12d

Please sign in to comment.