PyCharm change file type association

后端 未结 5 1716
野的像风
野的像风 2020-12-14 14:31

I have a file in PyCharm and its used to be just a .txt file. Now I wanted to use .rst (reStructuredText).

I know that when I open a file w

相关标签:
5条回答
  • 2020-12-14 14:54

    In case someone still cannot find it: under Settings | Editor | File Types menu, look for: Files Opened In Associated Applications - see if you can spot there the full name of the problematic file and remove it.

    0 讨论(0)
  • 2020-12-14 14:56

    I was having the same problem and noticed that if I 'Invalidate Caches' under the File menu I was able to trigger a re-asking of the file type.

    Definitely not ideal.

    0 讨论(0)
  • 2020-12-14 15:08

    See Settings| Editor | File Types.

    0 讨论(0)
  • 2020-12-14 15:15

    Actually, @CrazyCoder is right: If you accidentally mis-labeled the file, PyCharm remembers it and sets a "pattern" for the new file based on the name.

    So go to Settings | Editor | File Types, find the type you accidentally mislabeled and remove it from the "Registered Patterns" list.

    For example, I mislabed "osm.py" as text file, so under "Text files" I have:

    *.bat
    *.cgi
    .
    .
    .
    osm.py
    

    Remove it and you get your py file colors back! You can also register a file association where there is no extension. By default this is associated as "Text file".

    More on File Types.

    0 讨论(0)
  • 2020-12-14 15:17

    PyCharm > Preferences > Editor > File Type > Recognised file types > Select one (e.g., Javascript) > Registered Patterns (+ add wildcard * > apply > - remove wildcard).

    This worked for me to get my files associated with the right type.

    0 讨论(0)
提交回复
热议问题