mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
feature/spellcheck: conditionally spellcheck on load
This commit is contained in:
@ -1,17 +1,25 @@
|
|||||||
;;; feature/spellcheck/config.el -*- lexical-binding: t; -*-
|
;;; feature/spellcheck/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
|
(defvar-local +spellcheck-immediately t
|
||||||
|
"If non-nil, spellcheck the current buffer upon starting `flyspell-mode'.
|
||||||
|
|
||||||
|
Since spellchecking can be slow in some buffers, this can be disabled with:
|
||||||
|
|
||||||
|
(setq-hook! 'LaTeX-mode-hook +spellcheck-immediately nil)")
|
||||||
|
|
||||||
(def-package! flyspell ; built-in
|
(def-package! flyspell ; built-in
|
||||||
:commands flyspell-mode
|
:commands flyspell-mode
|
||||||
|
:init
|
||||||
|
(add-hook 'flyspell-mode-hook #'+spellcheck|immediately)
|
||||||
:config
|
:config
|
||||||
(setq ispell-program-name (executable-find "aspell")
|
(setq ispell-program-name (executable-find "aspell")
|
||||||
ispell-list-command "--list"
|
ispell-list-command "--list"
|
||||||
ispell-extr-args '("--dont-tex-check-comments"))
|
ispell-extr-args '("--dont-tex-check-comments"))
|
||||||
|
|
||||||
(defun +spellcheck|automatically ()
|
(defun +spellcheck|immediately ()
|
||||||
"Spellcheck the buffer when `flyspell-mode' is enabled."
|
"Spellcheck the buffer when `flyspell-mode' is enabled."
|
||||||
(when flyspell-mode
|
(when (and flyspell-mode +spellcheck-immediately)
|
||||||
(flyspell-buffer)))
|
(flyspell-buffer))))
|
||||||
(add-hook 'flyspell-mode-hook #'+spellcheck|automatically))
|
|
||||||
|
|
||||||
|
|
||||||
(def-package! flyspell-correct
|
(def-package! flyspell-correct
|
||||||
|
Reference in New Issue
Block a user