Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm spell-checking: how to remove a word (mistakenly) added to the dictionary?

In which dictionary exactly do words added with Right mouse click -> Spelling -> 'Typo: Save 'foo' to dictionary' go? How to remove them from there?

like image 203
zvezda Avatar asked Nov 22 '16 04:11

zvezda


People also ask

How do I delete a custom dictionary in PyCharm?

To remove a custom dictionary from the list, select it and click or press Alt+Delete. By default, PyCharm saves words to the global application-level dictionary. You can choose to save words to the project-level dictionary if the spelling is correct only for this particular project.

How does PyCharm check for spelling?

PyCharm checks the spelling of all your source code, including variable names, text in strings, comments, literals, and commit messages. For this purpose, PyCharm provides a dedicated Typo inspection which is enabled by default. The Typo inspection detects and highlights words that are not included in any dictionary.

How do I add a custom dictionary to the spelling checker?

On the Languagelist, select the language for which the dictionary should be used. Change the default custom dictionary to which the spelling checker adds words Whenever you check the spelling of a document, you have an option to add a word flagged as misspelled to a custom dictionary.

How to add typo words to PyCharm Dictionary?

Show activity on this post. You can also add particular typo word to PyCharm dictionary by pressing Alt + Enter this word and select Save [typo word] to dictionary. Sometimes this is best choice for me.


1 Answers

If you want remove a word from the dictionary you can go to:

Settings->Editor->Spelling

Now you should see a window with two tabs, Accepted Words and Dictionaries.

Click on the first one (Accepted Words) and click on the word that you want remove.

After this press on minus icon on the right of the page to remove the word.

Let me know.

like image 79
Giordano Avatar answered Sep 21 '22 21:09

Giordano