In spacemacs, I must have pressed a strange combination, because when I press C-c C-p
my ipython
repl loads with a side by side split - how can I switch this back to a stacked split permanently?
From the documentation:
If
split-height-threshold
is smaller than the chosen window’s height, the split puts the new window below. Otherwise, ifsplit-width-threshold
is smaller than the window’s width, the split puts the new window on the right.
Therefore add the following to dotspacemacs/user-config
:
(setq split-height-threshold 0)