summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-07-09 19:45:40 +0100
committerBlake Romero <blake@blkrom.com>2025-07-09 19:45:40 +0100
commit4738756596a45b8a41efeed6435cc0d8aa8ceb9e (patch)
treec4603686994ab5c95df63cb22bbefee72dd7666c
parentadce04cab5db1914c08e6fa88598b7b02f4dd85c (diff)
Add global window action keybindings
-rw-r--r--emacs-config.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org
index ec544c8..8438fd4 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -84,3 +84,9 @@ File actions.
(keymap-global-set "C-x x R" #'rename-visited-file)
(keymap-global-set "C-x x D" #'delete-file)
#+end_src
+
+Window actions.
+#+begin_src elisp
+ (keymap-global-set "M-O" #'window-swap-states)
+ (keymap-global-set "M-o" #'other-window)
+#+end_src