I am very very new to emacs. I want something like this. Every time I open a new buffer, it should split current winodow vertically. How should I change .emacs file. Please provide some pointers.
4 Answers
You know that you can do this manually with C-x 3 right? So we can use this fact to learn how to add the command to do this to .emacs.
We just need to find out what the function is. So let's do C-h k C-x 3 to find the help for C-x 3. That shows:
C-x 3 runs the command split-window-right, which is an interactive compiled Lisp function in `window.el'.
So, open .emacs (C-x C-f ~/.emacs), go to the end of the file and add:
(split-window-right)
Then save the file, restart emacs and it should work. I just tested it.
I don't remember the exact route I followed to get this, but I have the following configuration to suggest to Emacs that it should split the frame vertically rather than horizontally when Emacs has the choice (eg when bringing up help).
This seems to work fine on my widescreen monitors.
(setq split-height-threshold nil)
(setq split-width-threshold 160)
From this post on reddit you can set this explicitly for ediff.
(custom-set-variables
'(ediff-window-setup-function 'ediff-setup-windows-plain)
'(ediff-diff-options "-w")
'(ediff-split-window-function 'split-window-horizontally))
This has the advantage that it doesn't impact other splits.
emacs-startup-hookbecause it gives me more control over the location where it appears inside my user configuration files:(add-hook 'emacs-startup-hook (lambda () (split-window-right) )). And, of course, you have all the options in the world to put inside it -- e.g,split-window-vertically;split-window-horizontally; do the hokey pokey and turn yourself around . . ., etc. - lawlist(find-file "foo.txt")or(get-buffer-create "foo.txt")? Also, do you want one window on the left and one window on the right? Or, do you want one window on top, and one window on bottom? And which window do you want your new buffer to appear in -- top, bottom, left, or right? And what do you want to appear in the other window? - lawlist