답변:
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의 답변과 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 저장 후 다시 시작
최신 Jetbrains 제품에서이 설정을 변경하기위한 지침
product64.vmoptions를 편집해도 효과가 없었지만 idea.properties를 편집해도 문제가 없습니다. 또한 큰 파일로 작업하려면 product64.vmoptions / product.vmoptions -Xms 및 -Xmx의 값을 변경해야 할 수도 있습니다.
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, 32Gb RAM, NVMe PCIE3.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