>From ddff29ab2fb6b29d16cb0ef37c99ae2fb402f108 Mon Sep 17 00:00:00 2001 From: Hugo Heagren Date: Tue, 26 Jul 2022 21:25:40 +0100 Subject: [PATCH 5/6] Bind `split-root-window-below' to C-x 7 * 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/window.el b/lisp/window.el index c23f3a54f2..6c5ffe9e29 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -10582,6 +10582,7 @@ ctl-x-map (define-key ctl-x-map "{" 'shrink-window-horizontally) (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-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