branch: externals/ergoemacs-mode
commit 18b38596e10622b32e5b50662ca0f37fa492ce3d
Author: Walter Landry <[email protected]>
Commit: Walter Landry <[email protected]>
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)