Fork me on GitHub
#emacs
<
2021-09-13
>
Lukas08:09:58

Hey, for a while now, Emacs opens the Cider-result buffer at the bottom like this |                                 | |                                 | | _______________ | |   C-c C-p result      | I would really like to get my old default back: open the buffer on the right side |           | C-c C-p | |           | results   | |           | here       | I already ask in #beginners and tried https://stackoverflow.com/questions/7997590/how-to-change-the-default-split-screen-direction and also popwin with (push '("cider-result" :noselect t :position right :width 90) popwin:special-display-config)` but couldn't resolve the Issue.

🙏 2
anonimitoraf08:09:18

Do you use doom-emacs by any chance?

anonimitoraf08:09:02

Try

(set-popup-rules!
  '(("^\\*cider-result"
     :quit nil
     :side right
     :size 90
     :select nil
     :modeline t)))

Lukas08:09:35

this worked

Lukas08:09:38

thanks a lot

👍 2
Lukas08:09:46

:hugging_face:

rafalw09:09:26

any hints for non doom-emacs users?

anonimitoraf12:09:57

Sorry, I don't know. Maybe try reverse engineering set-popup-rules! if you have time