My WebStorm’s autocomplete stopped working today.
I made a new component and wanted to call it ProductArticleManager
as it’s the most fitting name for it.
However, the Autocomplete for that single file just refuses to work. Looks like the IDE can’t recognize it as a JS file.
I also made another folder called NewComp
and made a component NewComp.js
to check if it has anything to do with filename matching the folder name, but NewComp.js
works fine.
Is there something wrong with this particular name?
What i already did after a little googling:
- Restarted the IDE and computer, of course.
- Checked that
Power Saving Mode
is off. - Tried
File => Invalidate Cache / Restart
option. - Right clicked on the root folder and set it as Resource Root.
- Renaming the working
test.js
file toProductArticleManager.js
turned off the Autocomplete. - Moving the entire folder to another folder.
- Deleting
ProductArticleManager
folder and re-creating it didn’t work either.
I work in Ubuntu v20.04, WebStorm v2020.3.
Answer
Looks like the file is treated as plain text.
Please check the registered patterns in Settings | Editor | File types -> Text and Auto-detect file type by content file types – can you see ProductArticleManager.js
there? Removing this pattern from the list should help