107-flycheck: comment ispell-list-command

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-06-26 15:52:18 +02:00
parent d573ec035b
commit 2c5925dcc0

View File

@@ -2,8 +2,8 @@
;;; Commentary:
Flyspell highlights incorrect words as soon as they are completed
or as soon as the TextCursor hits a new word.
;; Flyspell highlights incorrect words as soon as they are completed
;; or as soon as the TextCursor hits a new word.
;;; Code:
(use-package flyspell
@@ -13,8 +13,9 @@ or as soon as the TextCursor hits a new word.
(dolist (hook '(text-mode-hook org-mode-hook))
(add-hook hook (lambda () (flyspell-mode 1))))
:config
(setq ispell-program-name "aspell"
ispell-list-command "--list"))
;;(setq ispell-program-name "aspell"
;; ispell-list-command "--list")
)
(provide '107-flyspell)
;; End: