]> git.eshelyaron.com Git - emacs.git/commit
Add new functions for splitting the root window
authorHugo Heagren <hugo@heagren.com>
Mon, 5 Sep 2022 18:54:51 +0000 (20:54 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 5 Sep 2022 18:57:21 +0000 (20:57 +0200)
commit6a2ee981c3a4a2f7e0864b0394ec47f6522847ee
tree7ccd3993be3d08966598c2a69d989d68f666b7c7
parent21c725dfe0c8fc3d4df32edb4995346df1ea9b97
Add new functions for splitting the root window

* lisp/window.el (split-window-right): Add optional argument to
control which window is split (previously, would only split selected
window).  Update docstring.
* doc/lispref/windows.texi (Splitting Windows): Update docs for
`split-window-right'.
* lisp/window.el (split-window-below): Add optional argument to
control which window is split (previously, would only split selected
window).  Update docstring.
* doc/lispref/windows.texi (Splitting Windows): Update docs for
`split-window-below'.
* lisp/window.el (ctl-x-map): Bind `split-root-window-right' to 9 in
ctl-x-map.  This is consistent with binding other window-splitting
operations to numbers in this map.
* lisp/window.el (ctl-x-map): Bind `split-root-window-below' to 7 in
ctl-x-map.  This is consistent with binding other window-splitting
operations to numbers in this map.
* lisp/window.el (split-root-window-right): New function to split
whole frame.
* doc/lispref/windows.texi (Splitting Windows): Add documentation for
`split-root-window-right'.
* lisp/window.el (split-root-window-below): New function to split
whole frame.
* doc/lispref/windows.texi (Splitting Windows): Add documentation for
`split-root-window-below' (bug#56791).
doc/lispref/windows.texi
etc/NEWS
lisp/window.el