From 9ac79c6e861ecfcf9b21f26678046f31b37dc536 Mon Sep 17 00:00:00 2001 From: Gerry Agbobada Date: Sat, 20 Mar 2021 02:19:18 +0100 Subject: [PATCH] =?UTF-8?q?fix(:input=20layout=20bepo):=20make=20evilem=20?= =?UTF-8?q?use=20g=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some reason, using only the `map!` call did not work, the reason is still unclear but calling the evilem-default-keybdings function worked so going with that. --- modules/input/layout/+bepo.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/input/layout/+bepo.el b/modules/input/layout/+bepo.el index 418f85277..158c0a471 100644 --- a/modules/input/layout/+bepo.el +++ b/modules/input/layout/+bepo.el @@ -83,7 +83,7 @@ (doom-bepo-rotate-ts-bare-keymap '(evil-treemacs-state-map))) (after! (:or helm ivy selectrum icomplete) (doom-bepo--evil-collection-hook - nil + nil '(minibuffer-local-map minibuffer-local-ns-map minibuffer-local-completion-map @@ -225,5 +225,5 @@ (after! evil-easymotion ;; instead of using gs as the evilem-map we use gé to avoid conflicts with org-mode ;; down the road - (map! :nvm "gé" evilem-map) + (evilem-default-keybindings "gé") (doom-bepo-rotate-bare-keymap '(evilem-map) doom-bepo-cr-rotation-style))))