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 更改文件类型关联


基础教程推荐
- 修改列表中的数据帧不起作用 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01