[dvorak] adapt window hydra keys

This commit is contained in:
contrapunctus 2021-03-15 18:53:07 +05:30
parent cc65c02dc5
commit 56ea4d2d29
1 changed files with 8 additions and 8 deletions

View File

@ -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