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

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

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


当前回答

Webstorm的Windows默认安装位置:

C:\Program Files\JetBrains\WebStorm 2019.1.3\bin\idea.properties

智能感知默认设置为x4,文件大小默认设置为x5

(我的商业工作站是一个野兽:第8代i7, 32Gb RAM, NVMe pcie3.0 0x4 SDD, gloat,等等,gloat,等等)

#---------------------------------------------------------------------
# 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=10000

    #---------------------------------------------------------------------
    # Maximum file size (kilobytes) IDE is able to open.
    #--------------------------------------------------------------------- 

idea.max.content.load.filesize=100000

其他回答

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

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

Idea.max.intellisense.filesize=999999 

WINDOWS: IDE_HOME\bin\idea.properties

为了澄清Alvaro的回答,您需要将-D选项添加到命令行列表中。我使用的是PyCharm,但概念是一样的:

pycharm{64,.exe,64.exe}.vmoptions:
<code>
    -server
    -Xms128m
    ...
    -Didea.max.intellisense.filesize=999999 # <--- new line
</code>

在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

这是建立在Álvaro González的答案和如何增加IDE内存限制IntelliJ IDEA在Mac上?

进入帮助>编辑自定义属性

Add:

idea.max.intellisense.filesize=999999

重新启动IDE。

PhpStorm 2020

帮助->编辑自定义属性。 文件将在编辑器中打开。将下面的部分粘贴到文件中。

 #---------------------------------------------------------------------
 # 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

File ->失效/重启->重启

有时可能不会更新,您可能需要编辑根想法。属性文件。

为任何版本的Idea编辑此文件

转到应用程序的位置,即linux => /opt/PhpStorm[version]/bin 找到一个叫做idea的文件。备份文件,即idea.properties.old 用任何文本编辑器打开原始文件。 找到idea.max.intellisense.filesize = 替换为idea.max.intellisense.filesize=your_required_size 即idea.max.intellisense.filesize = 10480 默认情况下,这个大小是kb 保存并重新启动IDE。