From f0f7b9d6e74e48b62785618bad46771c379b2a58 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 16 Oct 2025 21:46:28 +0200 Subject: Enable Kitty Keyboard Protocol support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Solves issues with ¿, allows using the super key! --- emacs/emacs.el | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'emacs') diff --git a/emacs/emacs.el b/emacs/emacs.el index ecdb1061..ace05533 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -43,6 +43,13 @@ (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) +;; I use Wezterm, that supports the Kitty Keyboard Protocol. +;; Using this fixes ¿ and lets Emacs use super, for example. +(use-package kkp + :ensure t + :config + (global-kkp-mode +1)) + ;; Install xclip so cutting/copying in Emacs on a terminal affects the graphical clipboard (use-package xclip :ensure t -- cgit v1.2.3