diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/signal-config.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/signal-config.el b/modules/signal-config.el index 00279d4c..102ece86 100644 --- a/modules/signal-config.el +++ b/modules/signal-config.el @@ -127,6 +127,16 @@ time." (when (file-readable-p cj/signal-private-config-file) (load cj/signal-private-config-file nil t))) +;; Chat buffers (named `*Signel: <id>*') open in the bottom 30% of the +;; frame rather than wherever display-buffer's fallback rule picks. +;; The fork's `signel-chat' uses `pop-to-buffer', so this entry applies. +(add-to-list + 'display-buffer-alist + '("\\`\\*Signel: " + (display-buffer-reuse-window display-buffer-at-bottom) + (window-height . 0.3) + (reusable-frames . nil))) + ;;; Connection guard, contact fetch, and cache ;; Forward declarations: signel.el is loaded by the use-package above (with |
