>From 7e353426525100e0bd60946866809c671fcf2789 Mon Sep 17 00:00:00 2001 From: Hugo Heagren Date: Tue, 26 Jul 2022 21:26:25 +0100 Subject: [PATCH 6/6] Bind `split-root-window-right' to C-x 9 * 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/window.el b/lisp/window.el index 6c5ffe9e29..7ace309906 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -10583,6 +10583,7 @@ ctl-x-map (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer) (define-key ctl-x-map "+" 'balance-windows) (define-key ctl-x-map "7" 'split-root-window-below) +(define-key ctl-x-map "9" 'split-root-window-right) (define-key ctl-x-4-map "0" 'kill-buffer-and-window) (define-key ctl-x-4-map "1" 'same-window-prefix) (define-key ctl-x-4-map "4" 'other-window-prefix) -- 2.20.1