回答:
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
これは、アルバロゴンサレスの回答とMacのIntelliJ IDEAでIDEメモリの制限を増やす方法から構築されています。
[ヘルプ]> [カスタムプロパティの編集]に移動します
追加:
idea.max.intellisense.filesize=999999
IDEを再起動します。
C:\Users\<username>\.AndroidStudio2.3\idea.properties
。しかし、ついにうまくいきました。どうもありがとう !
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を保存して再起動する
product64.vmoptionsの編集はうまくいきませんでしたが、idea.propertiesの編集はうまくいきました。また、大きなファイルで作業できるようにするために、-Xmsおよび-Xmxのproduct64.vmoptions / product.vmoptionsの値を変更する必要がある場合があります。
Alvaroの答えを明確にするために、コマンドラインのリストに-Dオプションを追加する必要があります。私はPyCharmを使用していますが、概念は同じです:
pycharm{64,.exe,64.exe}.vmoptions:
<code>
-server
-Xms128m
...
-Didea.max.intellisense.filesize=999999 # <--- new line
</code>
PhpStorm.bat
同じbin
ディレクトリに、-Didea.properties.file=...
JVMオプションがあることを示唆するファイルがあります:-?
バージョン2020のこのファイルの現在の場所を見つけるのは無駄でしHelp > Edit Custom Properties
た。新しい(空の)ファイルに移動すると、にが作成され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
これは、メニュー項目の動作が必要なものを反映していないこのバージョンのバグとして私を襲いますが、私の特定の設定が何らかの形で在庫と異なる場合もあります。PyCharmとJDKがインストールされています。
Webstormの Windowsのデフォルトのインストール場所:
C:\ Program Files \ JetBrains \ WebStorm 2019.1.3 \ bin \ idea.properties
私は行っx4 default for intellisense
てx5 for file size
(私のビジネスワークステーションは野獣です:第8世代i7、32 Gb RAM、NVMe PCIE3.0x4 SDD、グロートなど、グロートなど)
#---------------------------------------------------------------------
# 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