A lot of Emacs functions automatically split the screen. However, they all do so vertically, (ie; they make two windows, one on top of the other). Is there any way to make them all split horizontally (side-by-side) by default instead?

link|improve this question

79% accept rate
2  
I would swap usage of horizontal and vertical in this question - I'd say the default behaviour is to split horizontally (the split is a horizontal line across the screen). – Skilldrick Jan 17 '10 at 16:10
9  
C-x 3 runs the command split-window-horizontally, for the command which gives side-by-side windows, so I am using the same. – Nikwin Jan 17 '10 at 16:29
feedback

2 Answers

up vote 26 down vote accepted
(setq split-height-threshold nil)
(setq split-width-threshold 0)
link|improve this answer
1  
Note that these work because of how they affect split-window-preferred-function and the split-window-sensibly function that is set to - if you read the docs for that, you can find out how these variables being set affect things. For those of us who prefer vertical splitting by default, we can just use (setq split-width-threshold nil) which doesn't allow the system to split windows horizontally. – Kendall Helmstetter Gelner Jan 17 '10 at 18:17
1  
After reading up the docs and playing around a bit, I have set split-height-threshold to nil and the split-width-threshold to 80 so that it will first see if it can split horizontally and only then try vertically. Having it only split vertically often just gets ugly as the windows become to narrow. – Nikwin Jan 17 '10 at 20:58
This sounds very plausible. However, this is not working for GDB/GUD integration in emacs. If I have one single window an start the debugger, emacs always splits vertically. Is there any GUD/GDB-specific setting for that? – mefiX Dec 20 '10 at 13:13
@Nikwin: In my case, this solution limits "C-x 4 b" to two 80 column windows side-by-side (my current screen real estate can only fit that much). Invoking "C-x 4 b" a second time does not open up a new vertically split "other" window. Instead, it opens up the buffer on the "other" currently available window. How can I make it behave (try horizontally then vertically) as you have described? – avendael Feb 5 '11 at 14:13
feedback
(setq split-height-threshold 0) (setq split-width-threshold 0)

is what i had to use to get the desired behaviour (no horizontal splitting)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.