aboutsummaryrefslogtreecommitdiff
path: root/modules/keyboard-compat.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-07 19:25:22 -0500
committerCraig Jennings <c@cjennings.net>2026-05-07 19:25:22 -0500
commitd08d724ca8833d58a213ae48775b8b56872fe744 (patch)
treefee701a4f55d9c7785e36a618e3d3bdbe393c1de /modules/keyboard-compat.el
parent2f68ceef94c2eb97d2187e732ff66ddef4cb2e14 (diff)
downloaddotemacs-d08d724ca8833d58a213ae48775b8b56872fe744.tar.gz
dotemacs-d08d724ca8833d58a213ae48775b8b56872fe744.zip
refactor(ui-navigation): drop redundant M-S-s window-swap binding
`window-swap-states` on M-S-s overlapped with `buffer-move` (C-M-arrows), which I actually use. I cleared the binding plus the M-S -> M-S-s translation in keyboard-compat.el so the keyboard table stays in sync.
Diffstat (limited to 'modules/keyboard-compat.el')
-rw-r--r--modules/keyboard-compat.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/keyboard-compat.el b/modules/keyboard-compat.el
index b914978f..b8e91dd8 100644
--- a/modules/keyboard-compat.el
+++ b/modules/keyboard-compat.el
@@ -73,7 +73,6 @@
;; M-V -> M-S-v cj/split-and-follow-right (ui-navigation.el)
;; M-H -> M-S-h cj/split-and-follow-below (ui-navigation.el)
;; M-T -> M-S-t toggle-window-split (ui-navigation.el)
-;; M-S -> M-S-s window-swap-states (ui-navigation.el)
;; M-Z -> M-S-z cj/undo-kill-buffer (ui-navigation.el)
;; M-U -> M-S-u winner-undo (ui-navigation.el)
;; M-D -> M-S-d dwim-shell-commands-menu (dwim-shell-config.el)
@@ -159,7 +158,6 @@ Meta+Shift+letter triggers M-S-letter keybindings."
(define-key key-translation-map (kbd "M-V") (kbd "M-S-v"))
(define-key key-translation-map (kbd "M-H") (kbd "M-S-h"))
(define-key key-translation-map (kbd "M-T") (kbd "M-S-t"))
- (define-key key-translation-map (kbd "M-S") (kbd "M-S-s"))
(define-key key-translation-map (kbd "M-Z") (kbd "M-S-z"))
(define-key key-translation-map (kbd "M-U") (kbd "M-S-u"))
(define-key key-translation-map (kbd "M-D") (kbd "M-S-d"))