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?
问问题
143 次
1 回答
0
从文档中:
如果
split-height-threshold
小于所选窗口的高度,则拆分将新窗口放在下面。否则,如果split-width-threshold
小于窗口的宽度,则拆分将新窗口放在右侧。
因此将以下内容添加到dotspacemacs/user-config
:
(setq split-height-threshold 0)
于 2016-10-30T06:58:01.650 回答