From d9683d11485e8e44dbce159e099fff74404b3654 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 11 Oct 2020 20:30:42 -0400 Subject: [PATCH] Fix #4074: map! with meta/hyper modifier prefixes --- core/core-keybinds.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index 55f9ae7b1..9e06e2df9 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -309,7 +309,7 @@ For example, :nvi will map to (list 'normal 'visual 'insert). See (let ((a (plist-get doom--map-parent-state prop)) (b (plist-get doom--map-state prop))) (if (and a b) - `(general--concat nil ,a ,b) + `(general--concat t ,a ,b) (or a b)))) (defun doom--map-nested (wrapper rest)