Flyspell enables on-the-fly spell checking in Emacs by the means of a minor mode (called Flyspell).
Questions tagged [flyspell]
44 questions
5
votes
1 answer
Correctly saved words with german Umlaute in personal dictionary of hunspell not recognised as correct spelling by emacs ispell or flyspell
I have a perfectly working setup for hunspell with emacs (flyspell) using
("german” "[[:alpha:]]" "[^[:alpha:]]" "[']" t ("-d" "de_DE_frami" ) nil utf-8)
as dictionary definition for ispell-dictionary-alist.
German Umlaute are no problem as long…

emelin
- 101
- 5
5
votes
1 answer
emacs, flyspell, deactivate "C-." key binding
I have this little problem, I have some key bindings like so C-. C-x or C-. C-m. After I activate the flyspell-mode, I cannot use these commands. In my .emacs file I have the next 2 lines before
(global-unset-key (kbd "C-."))
(define-key…

silgon
- 6,890
- 7
- 46
- 67
4
votes
1 answer
Setting shortcuts keys in specific modes in Emacs (e.g. ido)
I have two problems which are somewhat related I believe:
1) In IDO I'd like to change ido-restrict-to-matches to samething else than C-SPC or C-@. Unfortunately I do not know how to tell emacs that I want a different shortcut (say C-0).
2) I'd like…

user673592
- 2,090
- 1
- 22
- 37
3
votes
2 answers
Force flyspell to go to the end of the word when autocorrecting word in Emacs
I have found it annoying that flyspell seems to stay in the middle of the word when you do flyspell-auto-correct-word command. Can this be changed to force it to go to the end of the word after running the command? It might be as simple as setting a…

J Spen
- 2,614
- 4
- 26
- 41
3
votes
1 answer
personal dictionaries in emacs flyspell-mode
I'd like to make flyspell aware of certain words I use frequently--like foreign proper names, etc. But I don't want flyspell to think that this list is a complete dictionary; rather I'd like it to take the union of this list and its default…

pseudosudo
- 6,270
- 9
- 40
- 53
3
votes
2 answers
Can't properly disable flyspell in org mode
I set up emacs to turn flyspell on by default for text mode using
(add-hook 'flyspell-mode-hook 'flyspell-buffer)
(add-hook 'text-mode-hook 'flyspell-mode)
I would like to disable it automatically in org mode files, and I did manage to disable it…

EpsilonVector
- 3,973
- 7
- 38
- 62
3
votes
2 answers
How to limit the number of "suggestions" that flyspell gives?
In emacs flyspell mode, sometimes the list of suggestions is really long, so that the pop-up menu is taller than the screen and requires vertical scrolling of the menu because the "Save word" option is at the bottom of the menu.
Is there a way to to…

Kevin Wright
- 2,397
- 22
- 29
3
votes
0 answers
Selective flyspell mode?
I use flyspell-mode when writing blog posts. The problem I'm having is that I blog about code a lot, and flyspell predictably highlights most of the "words" in that code as misspellings.
Is there any way to get it to ignore blocks of text between…

Inaimathi
- 13,853
- 9
- 49
- 93
3
votes
2 answers
Emacs, how to auto turn on flyspell for LaTeX file
I use Emacs only for \LaTeX and python programming. Is there a way to automatically turn on flyspell-mode when I work on a .tex file, and turn on flyspell-prog-mode when I work on a .py file? How can I do this in my .emacs file?

LWZ
- 11,670
- 22
- 61
- 79
2
votes
1 answer
User Interaction Improvements to Flyspell Correct Word
I think the behavior of flyspell-correct-word should be extended to a command that corrects all occurrences of the misspelled word of interest. This of course is not relevant for syntactic errors in the underlying spelling correction. I don't know…

Nordlöw
- 11,838
- 10
- 52
- 99
2
votes
1 answer
how to get GNU Emacs spellcheck to find user's personal dictionary on OSX?
I switched from Aquamacs to GNU Emacs. Before, when Aquamacs thought a word was misspelled, I could right-click to "Learn Spelling." (I also had an option to Ignore Spelling to get it to unflag the word for that buffer only.)
In GNU Emacs, I'm…

incandescentman
- 6,168
- 3
- 46
- 86
2
votes
1 answer
Don't mark code comments as incorrect Flyspell
In emacs flyspell-prog-mode, comments are spell-checked. However, many of my comments are commented blocks of code, and are highlighted as spelling errors. How can I tell Flyspell to ingore all of the symbols used in the program code?

PythonNut
- 6,182
- 1
- 25
- 41
2
votes
1 answer
Using One Key for Both flymake And flyspell
I am using flymake with pyflakes to check my python code and flyspell to check my strings and comments. I want to have one function which will go to the next error, or will display information about the error if currently at an error. How would I…

Nikwin
- 6,576
- 4
- 35
- 43
2
votes
0 answers
Is it possible to auto-correct spelling "on space" in Emacs?
I wish there were a way so that when I mistype a word, flyspell could autocorrect it to the "most likely" correction. When I mistype a word and then hit OPTION-TAB to correct it, flyspell ALMOST ALWAYS picks the correct correction by default as the…

incandescentman
- 6,168
- 3
- 46
- 86
2
votes
1 answer
Flyspell without a mouse
How can I add a word to the dictionary in flyspell without using a mouse? I know, I can use the regular ispell.el binding M-$ and and go through the menu for that, however, this needs multiple keystrokes.
Is it possible to bind the "Save Word"…

Robinaut
- 123
- 2