[hydra] change window command bindings

This commit is contained in:
contrapunctus 2021-06-14 16:38:45 +05:30
parent 5d9119f3bf
commit 26cc83d2da
1 changed files with 6 additions and 6 deletions

View File

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