pycharm修改文件大小限制
The file size (5.44 MB)exceeds the configured limit (2.56 MB).Code insight features are not available
方法:
The file size (5.44 MB)exceeds the configured limit (2.56 MB).Code insight features are not available
- 打开pycharm 安装目录下的
idea.properties
- 增加配置项:
idea.max.intellisense.filesize=99999
方法一:
在 PyCharm 安装目录的 bin 目录下,新建 idea.properties 文件,并在文件中添加一行
idea.max.intellisense.filesize=99999
方法二:
打开 PyCharm ,点击 Help-->Edit Custom Properties,在文件中添加
idea.max.intellisense.filesize=99999
添加好后,重启 PyCharm 即可。
评论
0 评论