Pycharm utils.py not getting syntax highlight

20,204

Solution 1

Please see File | Settings (Preferences on Mac) | Editor | File Types.

Look for your file name mapped to the Text type or to the Auto-detect file type by content type.

Remove the incorrect mapping and it will fix the issue.

If you still can't find the wrong mapping in the IDE settings, locate the options/filetypes.xml file in the Configuration directory. Close the IDE and either edit this file to remove the incorrect mapping or delete this file to reset all the file types to the defaults.

text files

Solution 2

As CrazyCoder answered, my file also landed in an unintended association. In my case it was "Auto-detect file type by content". You can just try to add your file to the desired file type (e.g. Python) and PyCharm will automatically try to move the association.

Solution 3

FYI, a quick action to reassociate a file's type will be available in the context menu of the Project tool window in IntelliJ IDEA 2021.2 (EAPs should be available publicly around May 2021).

Share:
20,204
Vaibhav Mishra
Author by

Vaibhav Mishra

Full Stack Developer working in Microsoft

Updated on August 23, 2022

Comments

  • Vaibhav Mishra
    Vaibhav Mishra almost 2 years

    I have several django projects and several different files with name utils.py, however pycharm treats them as simple .txt files with no syntax highlighting or any other kind of parsing, how can I fix this?