diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-19 19:40:01 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-19 19:40:01 +0200 |
commit | 2b46ba373d475c2da8e16d89899977da56ea6718 (patch) | |
tree | 0fc27be237de3fa0f3d3e7b48c3cbede330dc1e9 /.config | |
parent | 52d6024e1fbe51c9a7dfafa77883134d79de0320 (diff) |
Use a more accurate binding
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/mm-keybindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index 1cadcb8..2bc0971 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -48,7 +48,7 @@ the first command is remapped to the second command." (defun mm-qmk-hyper-as-hyper (args) (let ((chord (cadr args))) (when (string-prefix-p "H-" chord) - (setf (cadr args) (concat "C-M-s" (substring chord 1))))) + (setf (cadr args) (concat "C-M-S-s" (substring chord 1))))) args) ;; Both ‘keymap-global-set’ and ‘keymap-local-set’ call ‘keymap-set’ |