summaryrefslogtreecommitdiff
path: root/modules/keybindings.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
commit7854ad74addd9bcae905def8fe4f844fb5c08678 (patch)
treefb1849fc4ebece45697c844eac4047a76ad984d1 /modules/keybindings.el
parentb62a9a792707581243b15116910d8aef33220d3f (diff)
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/keybindings.el')
-rw-r--r--modules/keybindings.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/keybindings.el b/modules/keybindings.el
index 1eff621c..9d5ba454 100644
--- a/modules/keybindings.el
+++ b/modules/keybindings.el
@@ -113,7 +113,7 @@ Errors if VAR is unbound, not a non-empty string, or the file does not exist."
;; Add commonly-used general keybindings
(keymap-global-set "M-*" #'calculator)
-(keymap-global-set "M-Y" #'yank-media)
+(keymap-global-set "M-S-y" #'yank-media) ;; was M-Y, overrides yank-pop
;; Normally bound to ESC ESC ESC, hit ESC once to get out of unpleasant situations.
(keymap-global-set "<escape>" #'keyboard-escape-quit)