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 | 887672acafeb105c7d676fcc1f0ea23d9c9d23c4 (patch) | |
| tree | 04dd27a6d72aa0399b1eb4933bc8edf31cb15e65 /modules/ui-navigation.el | |
| parent | 6863c14e6e4eb04ce7b4f465cd4e06e497b0f53b (diff) | |
| download | dotemacs-887672acafeb105c7d676fcc1f0ea23d9c9d23c4.tar.gz dotemacs-887672acafeb105c7d676fcc1f0ea23d9c9d23c4.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 8248bab6c..b99a9cacc 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 |
