Title: P0: and aspell in Emacs [2023-08-12 Sat]
I configured aspell language spell checker in Emacs
with flycheck-aspell package, but it require much CPU. 馃
I activate and deactivate it with command:
(defun my/switch-flycheck-mode ()
(interactive)
(if (null flycheck-mode) :: this allow to enable and disable mode with one command (minor-mode)
:: Turn mode off
(flycheck-mode)
:: Turn mode on
(flycheck-mode -1)
)
)\n#dailyreport #emacs #aspell #flycheck
