aboutsummaryrefslogtreecommitdiff
path: root/modules/undead-buffers.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-23 22:42:10 -0600
committerCraig Jennings <c@cjennings.net>2026-01-23 22:42:10 -0600
commit38211412c9acec51fd80f49180e72efd019f1146 (patch)
tree25b0264044a06d1db0ff017e8694e47815c3f31f /modules/undead-buffers.el
parent21bfb51ac65187a2f464112ee27962444deabea4 (diff)
downloaddotemacs-38211412c9acec51fd80f49180e72efd019f1146.tar.gz
dotemacs-38211412c9acec51fd80f49180e72efd019f1146.zip
fix(terminal): add console/mosh compatibility
- Create terminal-compat.el for arrow key escape sequences - Fix M-uppercase keybindings (M-O → M-S-o, etc.) that conflicted with terminal escape sequences ESC O A/B/C/D - Add GUI-only guards for emojify and icon rendering - 18 keybindings updated across 13 modules with override comments
Diffstat (limited to 'modules/undead-buffers.el')
-rw-r--r--modules/undead-buffers.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/undead-buffers.el b/modules/undead-buffers.el
index fa09e04af..f79afb4bd 100644
--- a/modules/undead-buffers.el
+++ b/modules/undead-buffers.el
@@ -75,7 +75,7 @@ ARG is passed to `save-some-buffers'."
(unless (one-window-p)
(delete-window))
(cj/kill-buffer-or-bury-alive buf)))
-(keymap-global-set "M-O" #'cj/kill-other-window)
+(keymap-global-set "M-S-o" #'cj/kill-other-window)
(defun cj/kill-all-other-buffers-and-windows ()
"Kill or bury all other buffers, then delete other windows."
@@ -84,7 +84,7 @@ ARG is passed to `save-some-buffers'."
(delete-other-windows)
(mapc #'cj/kill-buffer-or-bury-alive
(delq (current-buffer) (buffer-list))))
-(keymap-global-set "M-M" #'cj/kill-all-other-buffers-and-windows)
+(keymap-global-set "M-S-m" #'cj/kill-all-other-buffers-and-windows) ;; was M-M
(provide 'undead-buffers)
;;; undead-buffers.el ends here