emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/ergoemacs-mode 18b3859 121/325: Simplify split-window b


From: Stefan Monnier
Subject: [elpa] externals/ergoemacs-mode 18b3859 121/325: Simplify split-window binding
Date: Sat, 23 Oct 2021 18:48:35 -0400 (EDT)

branch: externals/ergoemacs-mode
commit 18b38596e10622b32e5b50662ca0f37fa492ce3d
Author: Walter Landry <wlandry@caltech.edu>
Commit: Walter Landry <wlandry@caltech.edu>

    Simplify split-window binding
---
 ergoemacs-themes.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ergoemacs-themes.el b/ergoemacs-themes.el
index c54b488..72badeb 100644
--- a/ergoemacs-themes.el
+++ b/ergoemacs-themes.el
@@ -591,10 +591,10 @@
   (global-set-key (kbd "M-@") 'delete-window)
   
   (global-unset-key (kbd "C-x 3"))
-  (global-set-key (kbd "M-4") '(split-window-below split-window-horizontally))
+  (global-set-key (kbd "M-4") 'split-window-below)
   
   (global-unset-key (kbd "C-x 2"))
-  (global-set-key (kbd "M-$") '(split-window-right split-window-vertically))
+  (global-set-key (kbd "M-$") 'split-window-right)
 
   ;; Mode specific changes
   (define-key term-raw-map (kbd "M-s") 'ergoemacs-move-cursor-next-pane)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]