From d13959dd77a5f3412a1ca24f341c71363c578949 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 12 Apr 2018 13:24:42 +0530 Subject: [PATCH] Emacs: Fix windowing slow down on Emacs 26 --- .emacs.d/lisp/main.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/lisp/main.el b/.emacs.d/lisp/main.el index ac70764b..086a1320 100644 --- a/.emacs.d/lisp/main.el +++ b/.emacs.d/lisp/main.el @@ -367,4 +367,8 @@ ;;; Edebug ;; (setq edebug-trace t) +;;; Make windowing more reactive on. This is especially true with Helm on EXWM. +(when (>= emacs-major-version 26) + (setq x-wait-for-event-timeout nil)) + (provide 'main)