From 4a1ecf647270e49da1a185f4d52c2553e1fedba8 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 12 Jun 2026 10:07:09 -0500 Subject: fix(keys): bind eww/elfeed/calibredb launchers to the uppercase Meta event Meta+Shift+ emits the uppercase event (M-E/M-R/M-B), so the M-S-e/M-S-r/M-S-b :bind specs on lowercase letters were never reached by the keychord and the three launchers were dead. Rebind them to M-E/M-R/M-B. Three ERT tests assert each chord resolves to eww, cj/elfeed-open, and calibredb respectively. --- modules/eww-config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/eww-config.el') diff --git a/modules/eww-config.el b/modules/eww-config.el index 066fae989..18648c1ba 100644 --- a/modules/eww-config.el +++ b/modules/eww-config.el @@ -67,7 +67,7 @@ (use-package eww :ensure nil ;; built-in :bind - (("M-S-e" . eww) ;; was M-E, overrides forward-sentence + (("M-E" . eww) ;; Meta+Shift+e emits the uppercase event; overrides forward-sentence :map eww-mode-map ("<" . eww-back-url) (">" . eww-forward-url) -- cgit v1.2.3