文件大小超过配置的限制(2560000),代码洞察功能不可用


182

我正在尝试在Jetbrains WebStorm 8中处理大型Javascript文件,并且在编辑窗口顶部显示一条消息:

文件大小超过配置的限制(2560000)。代码洞察功能不可用。

如何增加“配置的限制”以访问所有功能?

Answers:


257

在IntelliJ 2016及更高版本中,您可以从“帮助”菜单的“编辑自定义属性”(如@eggplantbr注释)更改此设置。

在较旧的版本上,没有GUI可以执行此操作。但是,如果您编辑IntelliJ IDEA平台属性文件,则可以更改它:

#---------------------------------------------------------------------
# Maximum file size (kilobytes) IDE should provide code assistance for.
# The larger file is the slower its editor works and higher overall system memory requirements are
# if code assistance is enabled. Remove this property or set to very large number if you need
# code assistance for any files available regardless their size.
#---------------------------------------------------------------------
idea.max.intellisense.filesize=2500

5
记住要输入“ 999999”之类的值,因为Webstorm 11.0.3删除该字段或将其设为极高的值(大约12个9s)是行不通的。
熔融冰

1
代码洞察功能包括“检查”和代码格式。我知道在增加文件大小限制之前,这两个功能在打开的8MB XML文件上均不起作用。
安迪

当我在android studio中执行此操作时,提示“文件C / users / .... androidstudio3.0 /...../ ideas.customproperties不存在。创造?' 不确定我是否有冒险搞砸的风险。找出超出此限制的原因是为什么我的自动完成功能和其他功能在注意到此消息后就停止了。
Androidcoder

我们可以对JetBrain的IntelliJ IDE衍生物使用相同的方法。我已经在RubyMine 2018.2.1中进行了验证。像@Andy一样,我遇到了一些未格式化的大型XML文件的情况。重新格式化3.5MB的文件速度很慢,但是现在可以正常工作了,这就是我想要的。
webaholik

这个问题一样,在无法识别R资源类的情况下在Android项目中使用它;因为生成的源文件超出了限制。
fabianopinto
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.