From ee1513a2120df0b946ed252aa1c06319f1b4ff9f Mon Sep 17 00:00:00 2001 From: gered Date: Sat, 7 Dec 2024 12:34:53 -0500 Subject: [PATCH] fix window splitting keybinds --- emacs.d/ui.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs.d/ui.el b/emacs.d/ui.el index 3b916bb..6d13f8a 100644 --- a/emacs.d/ui.el +++ b/emacs.d/ui.el @@ -92,8 +92,8 @@ (use-package window :bind - (([remap split-window-vertically] . gered/split-window-vertically) - ([remap split-window-horizontally] . gered/split-window-horizontally) + (([remap split-window-below] . gered/split-window-vertically) + ([remap split-window-right] . gered/split-window-horizontally) ("M-o" . other-window) ("M-p" . gered/switch-to-previous-buffer) ("M-}" . next-buffer)