It is required to have a dictionary for Intellij Idea spellchecking, that meets the following requirements:
- May be shared by VCS, so all developers can use it
- Every developer should be able to edit it easily
As far as I know, where are 2 types of dictionaries in Idea:
- One user dictionary, named "%username%.xml" (Settings-->Spelling-->Accepted Words)
- Number of custom dictionaries, "*.dic" (Settings-->Spelling-->Dictionaries)
But none of them meets the requirements.
User dictionary is easy to edit (Alt+Enter "Save ... to dictionary") and can be added to VCS, but it has a predefined user name, so it's impossible to share (e.g. developer A shared his A.xml, but developer B can't use it, because his Idea project only works with B.xml)
Custom dictionary has no problems with sharing, but it should be edited manually and it needs to reestart Idea to apply changes (e.g. make it see new words)
I've not found a plugin to solve that problem or any similar question, which makes me think that nobody needs such dictionary or the answer is too obvious.
So, is there any way to do it?
question from:https://stackoverflow.com/questions/28147162/how-to-create-a-shared-editable-dictionary-for-intellij-idea-spellchecking