From 1912a4cabff30c0d5fec920d518e7e1f027c9b6d Mon Sep 17 00:00:00 2001 From: eriedaberrie Date: Fri, 10 Feb 2023 09:40:32 -0800 Subject: [PATCH] Fix embark keymaps with flyspell --- init.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index de902d7..fa178ed 100644 --- a/init.el +++ b/init.el @@ -548,8 +548,10 @@ (use-package flyspell :ensure nil :hook (org-mode text-mode) - :bind (:map flyspell-mode-map - ("C-:" . flyspell-auto-correct-previous-word))) + :custom + (flyspell-auto-correct-binding (kbd "C-:")) + :config + (keymap-unset flyspell-mode-map "C-.")) (use-package ffap :demand t