aboutsummaryrefslogtreecommitdiff
path: root/modules/eww-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-13 00:56:38 -0500
committerCraig Jennings <c@cjennings.net>2026-06-13 00:56:38 -0500
commit707472b5afebd8c4ec0fced007ef26ef188148a7 (patch)
tree28fa40f3f8c316d03afdd66d9a4596693353fa89 /modules/eww-config.el
parent518d6f7a656c76dfdbae7951a9476baa149450ed (diff)
downloaddotemacs-707472b5afebd8c4ec0fced007ef26ef188148a7.tar.gz
dotemacs-707472b5afebd8c4ec0fced007ef26ef188148a7.zip
fix(keys): revert 5bfd74fd, restore the M-S- launcher bindings
5bfd74fd rebound eww/elfeed/calibredb from M-S-e/r/b to the uppercase Meta events M-E/M-R/M-B, on the theory that the keyboard emits the uppercase event and the lowercase-shift spec never matched. It was wrong. keyboard-compat.el installs a key-translation-map entry (M-E -> M-S-e, etc.) in GUI frames, so the original M-S- bindings did reach the launchers. Binding M-E directly while that translation stayed in place rewrote the keypress to the now-unbound M-S-e, breaking all three in GUI on the next restart. The audit and the review missed it because they checked key-binding, which ignores key-translation-map, and the running daemon still held the pre-fix bindings as stale state. This restores M-S-e/r/b, deletes the key-binding-only test that certified the broken config, and reclassifies the task as not-a-bug. The real problem, that these chords are dead outside GUI, is the subject of the keybinding-console-safety spec.
Diffstat (limited to 'modules/eww-config.el')
-rw-r--r--modules/eww-config.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/eww-config.el b/modules/eww-config.el
index 18648c1b..066fae98 100644
--- a/modules/eww-config.el
+++ b/modules/eww-config.el
@@ -67,7 +67,7 @@
(use-package eww
:ensure nil ;; built-in
:bind
- (("M-E" . eww) ;; Meta+Shift+e emits the uppercase event; overrides forward-sentence
+ (("M-S-e" . eww) ;; was M-E, overrides forward-sentence
:map eww-mode-map
("<" . eww-back-url)
(">" . eww-forward-url)