0
私のテキストファイルは1.58Gです、私のIntelliJカスタムVMオプションは "-Xmx4G"と設定されています。それはIntelliJは大きなファイルを表示できませんか?
"The file is too large; 1.58G. Showing a read-only of the first 2.56M".
私のテキストファイルは1.58Gです、私のIntelliJカスタムVMオプションは "-Xmx4G"と設定されています。それはIntelliJは大きなファイルを表示できませんか?
"The file is too large; 1.58G. Showing a read-only of the first 2.56M".
idea.properties
ファイルcontainsを示していないのはなぜファイルのデフォルトの制限はの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
#---------------------------------------------------------------------
# Maximum file size (kilobytes) IDE is able to open.
#---------------------------------------------------------------------
idea.max.content.load.filesize=20000
これらを変更することができますHelp
を使用して| カスタムプロパティの編集。
これはどういう意味ですか? "ファイルサイズ(35B)が設定された制限(1734967296B)を超えています。コードインサイト機能は利用できません" – user697911
私はこれら2つを持っています:idea.max.intellisense.filesize = 2500000&idea.max.content.load.filesize = 2000000 – user697911
'idea.max.content.load.filesize = 0'は可能な最大値を使います。 – CrazyCoder