Predelnik / DSpellCheck

Notepad++ Spell-checking Plug-in
GNU General Public License v2.0
198 stars 32 forks source link

Add Correctly Spelled Word When Not in Suggested Word List #319

Open jeronymite opened 1 year ago

jeronymite commented 1 year ago

When a spelling error is detected, a list of suggested correct words is provided. However, if the correct spelling is not in that list, there seems to be no way to instruct the software to add the actual correct word to the list. It would be very useful to be able to do this.

Also, for English, the misspelled word "iz" does not receive the suggestion "is", which is odd.

Thanks.

Predelnik commented 1 year ago

Plugin uses Hunspell library (by default at least), this library unfortunately does not support changing suggested words and they are just generated based on dictionaries used. I guess something on top of the library can be added to improve suggestions' list based on user input but I don't think it's an easy thing to implement, since we have to also come up with file format to store this and so on.