summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-04 09:15:13 -0600
committerCase Duckworth2021-03-04 09:15:13 -0600
commitd3b08aeb5298a8a1b52359733d849eb8516efe51 (patch)
treeea22d69fbcdd797bab4e57f2c3e658104472a065 /init.el
parentAdd org-mode (diff)
downloademacs-d3b08aeb5298a8a1b52359733d849eb8516efe51.tar.gz
emacs-d3b08aeb5298a8a1b52359733d849eb8516efe51.zip
Add flyspell-correct-mapper bind to flyspell-mode-map
This should fix the issue from a few commits ago.
Diffstat (limited to 'init.el')
-rw-r--r--init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el index 16c3c4c..dbc1c00 100644 --- a/init.el +++ b/init.el
@@ -443,7 +443,8 @@
443 443
444(use-package flyspell-correct 444(use-package flyspell-correct
445 :after flyspell 445 :after flyspell
446 :bind ("C-;" . flyspell-correct-wrapper)) 446 :bind (:map flyspell-mode-map
447 ("C-;" . flyspell-correct-wrapper)))
447 448
448(setq-default show-paren-delay 0 449(setq-default show-paren-delay 0
449 show-paren-style 'mixed 450 show-paren-style 'mixed