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