Skip to content

Commit

Permalink
tweak(window): show help/helpful/info buffers in a dedicated window
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 19, 2023
1 parent 4416062 commit 16f7d57
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions modules/me-window.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@

(add-to-list
'display-buffer-alist
`(,(rx bol "*" (or "Help" (seq "helpful" (zero-or-more not-newline))) "*" eol)
(display-buffer-reuse-window display-buffer-pop-up-window)
(inhibit-same-window . t)
(window-width . 0.4)))
`(,(rx bol "*" (or "info" "Help" (seq "helpful" (zero-or-more not-newline))) "*" eol)
(display-buffer-in-side-window)
(slot . 0)
(side . right)
(window-width . 80)))

;; Show *Warnings* at bottom
(add-to-list
Expand Down

0 comments on commit 16f7d57

Please sign in to comment.