spell-fu lacks support for multiple dictionaries, affix expansion, and many non-English dictionaries, so I've added back flyspell support to the spell module, but opt-in, because it is still the significantly slower option and spell-fu may support them one day. If not, tlikonen/wcheck-mode is another alternative to consider. Fixes #3813
10 lines
388 B
EmacsLisp
10 lines
388 B
EmacsLisp
;;; checkers/spell/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(when (or (not (featurep! +flyspell))
|
|
(featurep! +aspell))
|
|
(unless (executable-find "aspell")
|
|
(warn! "Couldn't find aspell executable; spell checker will not work")))
|
|
|
|
(when (featurep! +hunspell)
|
|
(unless (executable-find "hunspell")
|
|
(warn! "Couldn't find hunspell executable; spell checker will not work")))
|