diff options
author | Amin Bandali <bandali@gnu.org> | 2019-05-12 13:27:29 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-05-12 13:27:29 -0400 |
commit | 082360a8460ea8162f1c3d14fde55f732c5d7ec2 (patch) | |
tree | d789d5fee98f754164f6ff1536e0eed3655c0359 | |
parent | 0af1e91a41552561fc54cf23c6fd6a84a28b4f1e (diff) | |
download | configs-082360a8460ea8162f1c3d14fde55f732c5d7ec2.tar.gz configs-082360a8460ea8162f1c3d14fde55f732c5d7ec2.tar.xz configs-082360a8460ea8162f1c3d14fde55f732c5d7ec2.zip |
emacs: let Gnus use full window
currently problematic with *EBDB-Gnus* being left around
-rw-r--r-- | .emacs.d/init.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 87199e9..212ae16 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1731,9 +1731,11 @@ For disabling the behaviour for certain buffers and/or modes." :config (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)")) -(use-feature gnus-win - :config - (setq gnus-use-full-window nil)) +(comment + ;; problematic with ebdb's popup, *EBDB-Gnus* + (use-feature gnus-win + :config + (setq gnus-use-full-window nil))) (use-feature gnus-dired :commands gnus-dired-mode |