[hydra] change window command bindings

This commit is contained in:
contrapunctus 2021-06-14 16:38:45 +05:30
parent 5d9119f3bf
commit 26cc83d2da

View File

@ -1233,14 +1233,14 @@ Add these common operations to the hydra -
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defhydra contrapunctus-window-hydra (:color red) (defhydra contrapunctus-window-hydra (:color red)
"Window" "Window"
("d" delete-window "delete this") ("e" delete-window "delete this") ;; QWERTY d
("D" delete-other-windows "delete others") ("o" delete-other-windows "delete others")
("h" split-window-below "split below") ("t" split-window-below "split below")
("s" split-window-right "split right") ("n" split-window-right "split right")
("c" enlarge-window "increase height") ("c" enlarge-window "increase height")
("r" shrink-window "decrease height") ("r" shrink-window "decrease height")
("t" enlarge-window-horizontally "increase width") ("h" enlarge-window-horizontally "increase width")
("n" shrink-window-horizontally "decrease width")) ("s" shrink-window-horizontally "decrease width"))
#+END_SRC #+END_SRC
*** multiple cursors *** multiple cursors
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp