diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-23 13:02:56 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-23 13:02:56 +0100 |
| commit | 26bbf52b1df82db67051406872225aa693617196 (patch) | |
| tree | 19eb04de4446437ec30389466b2290f24b953e00 /.config/emacs | |
| parent | c5c28e7af4fe9ca7f90266b245c66d45c734ee0a (diff) | |
emacs: Support KKP in terminal mode
Diffstat (limited to '.config/emacs')
| -rw-r--r-- | .config/emacs/modules/mm-keybindings.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index aae9b4d..1480451 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -43,6 +43,14 @@ the first command is remapped to the second command." #',to)))) +;;; Support the Kitty Keyboard Protocol + +(use-package kkp + :ensure t + :unless (or (display-graphic-p) mm-humanwave-p) + :hook (tty-setup . global-kkp-mode)) + + ;;; Support QMK Hyper (defun mm-qmk-hyper-as-hyper (args) |