PyCharm change file type association(PyCharm 更改文件类型关联)
问题描述
我在 PyCharm 中有一个文件,它曾经只是一个 .txt
文件.现在我想使用 .rst
(reStructuredText).
I have a file in PyCharm and its used to be just a .txt
file.
Now I wanted to use .rst
(reStructuredText).
我知道,当我第一次打开一个没有结尾的文件时,PyCharm 会询问我它是什么类型的文件以及应该如何解释语法.
I know that when I open a file without an ending for the first time PyCharm asks me what kind of file it is and how the syntax should therefore be interpreted.
我可以以某种方式再次打开该对话框,还是可以通过其他方式更改关联?
Can i open up that dialog again somehow, or can I change the association in some other way?
推荐答案
其实@CrazyCoder 是对的:如果您不小心错误地标记了文件,PyCharm 会记住它并根据名称为新文件设置模式".
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.
所以转到设置
|编辑器
|File Types
,找到你不小心贴错标签的类型并将其从Registered Patterns"列表中删除.
So go to Settings
| Editor
| File Types
, find the type you accidentally mislabeled and remove it from the "Registered Patterns" list.
例如,我错误地将osm.py"标记为文本文件,所以在文本文件"下我有:
For example, I mislabed "osm.py" as text file, so under "Text files" I have:
*.bat
*.cgi
.
.
.
osm.py
删除它,您将恢复您的 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".
更多关于文件类型.
这篇关于PyCharm 更改文件类型关联的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PyCharm 更改文件类型关联


基础教程推荐
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01