Tagged Questions
6
votes
1answer
626 views
flyspell, emacs and aspell seem to diverge
I'm using the following configuration for aspell in my .emacs file
(setq ispell-program-name "/opt/local/bin/aspell")
(setq ispell-list-command "list")
(setq ispell-extra-args ...
8
votes
1answer
522 views
How can I make AUCTeX spell check in the language specified by babel and csquotes macros?
It is possible to make AUCTeX load the spelling dictionary of the language which babel is loaded with. One further convenience would be for it to appropriately react to changes of language within a ...
4
votes
1answer
187 views
How can I make AUCTeX use the spelling dictionary in the same language as polyglossia is loaded with?
Is it possible to setup AUCTeX so that it loads the spelling dictionary in the same language as the language used by polyglossia? For example, is it possible to load the Danish ispell dictionary when ...
8
votes
1answer
613 views
How can I make AUCTeX use the spelling dictionary in the same language as babel is loaded with?
Is it possible to setup AUCTeX so that it loads the spelling dictionary in the same language as the language used by babel? For example, is it possible to load the Danish ispell dictionary when a ...
11
votes
2answers
1k views
How to turn on flyspell mode with AucTeX?
I'm using flyspell mode, but unfortunatly I have to M-x flyspell-mode in each AucTeX buffer.
Somehow (add-hook 'LaTeX-mode-hook 'flyspell-mode) doesn't work for me.
What is the correct flyspell-hook ...