How can I get the compilation buffer on the bottom rather than on the right in Emacs 23?

允我心安 提交于 2019-11-30 18:11:49

It's probably the new split-window-preferred-function variable and split-window-sensibly function. Emacs now tries to figure out if it should split vertically or horizontally based on the window size (I assume you have a wide window). Try setting the split-width-threshold variable to nil.

The following worked best for me:

;; Split windows in Emacs 22 compatible way
(setq split-height-threshold nil)
(setq split-width-threshold most-positive-fixnum)
mortenee

This works for me in emacs 23 on linux :

(setq split-width-threshold most-positive-fixnum)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!