In Aquamacs in flyspell-mode, when flyspell flags a word as misspelled, I can right-click to add the word to my dictionary if it is in fact correctly spelled.
In GNU Emacs on OSX, when flyspell-mode highlights a word it thinks is misspelled, how can I add the word to the dictionary? Looking at the documentation, I do not see a function like flyspell-learn-word
or ispell-add-word-to-personal-dictionary
.
flyspell-correct-word-before-point
defined, try calling it with (C-c $
) with point on the incorrect word, it gives an option to save the word. – Menell