From 54393534ffa10c6ba4cb04db8a5e8ca4c820f562 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 7 Mar 2018 01:57:16 -0500 Subject: [PATCH] Don't abort kbd macros on doom/escape #455 --- core/core-keybinds.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index b8c83e8c9..4c52213d1 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -36,6 +36,8 @@ If any hook returns non-nil, all hooks after it are ignored.") (abort-recursive-edit)) ;; Run all escape hooks. If any returns non-nil, then stop there. ((run-hook-with-args-until-success 'doom-escape-hook)) + ;; don't abort macros + (defining-kbd-macro nil) ;; Back to the default (t (keyboard-quit))))