From 56ea4d2d29464dcb8e64d5682838dc7c04017946 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Mon, 15 Mar 2021 18:53:07 +0530 Subject: [PATCH] [dvorak] adapt window hydra keys --- init.org | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/init.org b/init.org index a9a02ef..bfeee29 100644 --- a/init.org +++ b/init.org @@ -1058,14 +1058,14 @@ Add these common operations to the hydra - #+BEGIN_SRC emacs-lisp (defhydra contrapunctus-window-hydra (:color red) "Window" - ("d" delete-window "delete") - ("s" delete-other-windows "single") - ("e" split-window-below "split below") - ("r" split-window-right "split right") - ("i" enlarge-window "increase height") - ("o" shrink-window "decrease height") - ("l" enlarge-window-horizontally "increase width") - ("k" shrink-window-horizontally "decrease width")) + ("d" delete-window "delete this") + ("D" delete-other-windows "delete others") + ("h" split-window-below "split below") + ("s" split-window-right "split right") + ("c" enlarge-window "increase height") + ("r" shrink-window "decrease height") + ("t" enlarge-window-horizontally "increase width") + ("n" shrink-window-horizontally "decrease width")) #+END_SRC *** multiple cursors #+BEGIN_SRC emacs-lisp