diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-07 19:25:22 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-07 19:25:22 -0500 |
| commit | 93b033a313c5a7ad56293c192ef69b567d344178 (patch) | |
| tree | 04dd27a6d72aa0399b1eb4933bc8edf31cb15e65 /modules/ui-navigation.el | |
| parent | 47b218ed15acd00c18cbc3bef604c4f2e0050a08 (diff) | |
| download | dotemacs-93b033a313c5a7ad56293c192ef69b567d344178.tar.gz dotemacs-93b033a313c5a7ad56293c192ef69b567d344178.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/ui-navigation.el')
| -rw-r--r-- | modules/ui-navigation.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/ui-navigation.el b/modules/ui-navigation.el index 8248bab6..b99a9cac 100644 --- a/modules/ui-navigation.el +++ b/modules/ui-navigation.el @@ -103,9 +103,6 @@ This function won't work with more than one split window." (if this-win-2nd (other-window 1)))))) (keymap-global-set "M-S-t" #'toggle-window-split) ;; was M-T, overrides transpose-words -;; SWAP WINDOW POSITIONS -(keymap-global-set "M-S-s" #'window-swap-states) ;; was M-S - ;; ---------------------------- Buffer Manipulation ---------------------------- ;; MOVE BUFFER |
