Add keymaps.el

This commit is contained in:
Oliver Payne 2024-03-10 22:54:09 +00:00
parent 8d9dd1b135
commit 0a1fa74c79
1 changed files with 12 additions and 0 deletions

12
keymaps.el Normal file
View File

@ -0,0 +1,12 @@
;; Experimenting
(defvar-keymap windmove-repeat-map
:repeat t
"<left>" #'windmove-left
"S-<left>" #'windmove-swap-states-left
"<right>" #'windmove-right
"S-<right>" #'windmove-swap-states-right
"<up>" #'windmove-up
"S-<up>" #'windmove-swap-states-up
"<down>" #'windmove-down
"S-<down>" #'windmove-swap-states-down)