Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open a file larger than 20 MB in Intellij?

If I try to open a text file larger than 20MB, I get the message: File <path> is too large (21.97MB). Where could I relax this restriction?

like image 214
Desik Avatar asked Jul 09 '16 21:07

Desik


People also ask

How do I access files in Intellij?

Go to a file in the current solutionPress Ctrl+Shift+T or choose Navigate | Go to File... from the main menu . Alternatively, you can press Ctrl+Shift+A , start typing the command name in the popup, and then choose it there.


1 Answers

Found by inspecting intellij source code: you have to edit the property idea.max.intellisense.filesize in idea.properties located in idea_home/bin.

The maximum file size to load = max(20MB, <value of idea.max.intellisense.filesize>)

like image 115
Desik Avatar answered Sep 23 '22 05:09

Desik