今天在使用WebStorm打开一个6.58MB的文件时,编辑器提示文件超过最大限制,代码洞察功能不可用。
编辑器很多功能不可用,包括标签折叠、自动补齐、标签自动匹配等。
The file size (6.58 MB) exceeds confiqured limit (2.56 MB). Code insight features are not available.
其实JetBrains软件有一个默认的文件大小限制,我这个就是2.56MB,可以通过修改相关配置来解决。JetBrains系列软件通用,包括WebStorm、PhpStorm、Intellij IDEA都可以。
解决方法:
方法一:
修改软件安装目录下的 bin/idea.properties 文件, 将其中的 idea.max.intellisense.filesize=2500 改大一些,比如:
idea.max.intellisense.filesize=99999
重启软件。
方法二:
点击菜单栏 help >> Edit Custom ProPerties… 首次会提示创建,点击确定即可。
添加一行:
idea.max.intellisense.filesize=99999
重启软件。
这样就可以正常打开了。
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/231287.html