我试图在Jetbrains WebStorm 8中处理一个大型Javascript文件,我在编辑窗口顶部收到一条消息,说:

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

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


当前回答

从帮助菜单中更改上述选项对我不起作用。 你有编辑的想法。属性文件,并更改为一些大的没有。

MAC: /Applications/<Android studio>.app/Contents/bin[Open App contents] 

Idea.max.intellisense.filesize=999999 

WINDOWS: IDE_HOME\bin\idea.properties

其他回答

从帮助菜单中更改上述选项对我不起作用。 你有编辑的想法。属性文件,并更改为一些大的没有。

MAC: /Applications/<Android studio>.app/Contents/bin[Open App contents] 

Idea.max.intellisense.filesize=999999 

WINDOWS: IDE_HOME\bin\idea.properties

对于那些不知道在哪里找到他们正在谈论的文件的人。在我的机器(OSX)上,它在:

PyCharm CE: /Applications/PyCharm CE.app/Contents/bin/idea.properties WebStorm: / / WebStorm.app /内容/ bin / idea.properties应用

在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

适用于64位2020版本

我徒劳地试图找到版本2020的该文件的当前位置。当导航到帮助>编辑自定义属性时,一个新的(空)文件被创建在appData/Roaming/JetBrains/IntelliJIdea2020.1/idea.properties。没有一些教程建议的/bin目录。但是,无论是将接受的答案中的块添加到这个文件中,还是将相同的文件添加到/bin中,都没有对我的配置进行更新。

我最终发现在appData/Roaming/JetBrains/IntelliJIdea2020.1/idea64.exe.vmoptions中存在对相同属性的引用。它是这样的:

-Didea.max.intellisense.filesize=3470

我把它改成了这样,应该能满足我的需要:

-Didea.max.intellisense.filesize=9999

这让我觉得是这个版本中的一个bug,菜单项的行为没有反映所需的内容,但也可能是因为我的特定设置与库存不同。我确实安装了PyCharm和JDK。

编辑IDEA的配置文件:IDEA_HOME/bin/ IDEA .properties

# Maximum file size (kilobytes) IDE should provide code assistance for.
idea.max.intellisense.filesize=60000

# Maximum file size (kilobytes) IDE is able to open.
idea.max.content.load.filesize=60000

保存并重新启动IDEA