emacs: disable jinx-mode if loading dictionaries failed
Alan Pearce alan@alanpearce.eu
Sun, 28 Apr 2024 09:15:27 +0200
1 files changed, 5 insertions(+), 1 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -1028,7 +1028,11 @@ prog-mode-hook conf-mode-hook)) :general ([remap ispell-word] #'jinx-correct-word [remap evil-prev-flyspell-error] #'jinx-previous - [remap evil-next-flyspell-error] #'jinx-next)) + [remap evil-next-flyspell-error] #'jinx-next) + :config (progn + (advice-add 'jinx--load-dicts :after (lambda () + (unless jinx--dicts + (global-jinx-mode -1)))))) (use-package feature-mode :defer t