aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-16 02:09:40 -0500
committerCraig Jennings <c@cjennings.net>2025-10-16 02:09:40 -0500
commit62df5cfbd0141b555d0486df86d1d6a54b697bcb (patch)
tree2c5c8e4c18b76dac74b10119abeb298b735b5daa /modules
parent1c9e29f5cd9229ab4e90459a3f2179b1797ec721 (diff)
downloaddotemacs-62df5cfbd0141b555d0486df86d1d6a54b697bcb.tar.gz
dotemacs-62df5cfbd0141b555d0486df86d1d6a54b697bcb.zip
bug: flyspell: move unmap C-; command to after flyspell loads
"C-;" is used for the custom-keymap prefix, but flyspell also grabs it when loaded. Since Flyspell-mode-map will override it locally when launched, I unset the keybinding after launch in :config
Diffstat (limited to 'modules')
-rw-r--r--modules/flyspell-and-abbrev.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/flyspell-and-abbrev.el b/modules/flyspell-and-abbrev.el
index 08b960368..8c9550d59 100644
--- a/modules/flyspell-and-abbrev.el
+++ b/modules/flyspell-and-abbrev.el
@@ -89,6 +89,8 @@
:after (ispell abbrev)
:ensure nil ;; built-in
:config
+ ;; unset keybinding as we're using it for cj/custom keymap
+ (keymap-unset flyspell-mode-map "C-;")
;; don't print message for every word when checking
(setq flyspell-issue-message-flag nil))