From de2daa0f620f89e770eaee05b8032de017c46eb5 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 19 Nov 2020 10:54:02 +0100 Subject: [PATCH] EXWM: Work around C-c binding issues because of exwm-edit. --- .emacs.d/lisp/init-exwm.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.emacs.d/lisp/init-exwm.el b/.emacs.d/lisp/init-exwm.el index a551b49c..0d63dcd3 100644 --- a/.emacs.d/lisp/init-exwm.el +++ b/.emacs.d/lisp/init-exwm.el @@ -271,8 +271,9 @@ WIth SETTING to :ENABLE or :DISABLE, set" ;; Even better: Use autorandr_launcher (https://github.com/phillipberndt/autorandr/issues/210). (setq exwm-edit-bind-default-keys nil) -(when (require 'exwm-edit nil 'noerror) - (exwm-input-set-key (kbd "C-c '") #'exwm-edit--compose) - (exwm-input-set-key (kbd "C-c C-'") #'exwm-edit--compose)) +;; REVIEW: The following prevents passing "C-c" to the child window. +;; (when (require 'exwm-edit nil 'noerror) +;; (exwm-input-set-key (kbd "C-c '") #'exwm-edit--compose) +;; (exwm-input-set-key (kbd "C-c C-'") #'exwm-edit--compose)) (provide 'init-exwm)