In Emacs 21.x, I don’t know whether using special split-window settings or because of other default behavior, Emacs, causing the window to split below, in addition to splitting the window, it switched the buffer to an unfocused window to the next buffer.
Currently (Emacs 24.x), split window and siblings-lower and split-window-right splitter windows do not seem to allow this setting. It's true?
If so, how do I configure Emacs to do this? Overriding a split window or split-window-below and split-window-right to have an extra step to move to the next in an unfocused window. This can be done with tips:
(defun split-window-and-next-buffer (new-window)
(let ((old-window (selected-window)))
(select-window new-window)
(next-buffer)
(select-window old-window)
new-window))
(defadvice split-window-right (after split-window-right-and-next-buffer
activate protect compile)
(split-window-and-next-buffer ad-return-value))
(defadvice split-window-below (after split-window-bellow-and-next-buffer
activate protect compile)
(split-window-and-next-buffer ad-return-value))
, , , , , .