Jetbrains WebStorm 8에서 큰 Javascript 파일을 작업하려고하는데 편집 창의 맨 위에 다음과 같은 메시지가 나타납니다.
파일 크기가 구성된 제한 (2560000)을 초과합니다. 코드 통찰력 기능을 사용할 수 없습니다.
모든 기능에 액세스하기 위해 ‘구성된 제한’을 늘리려면 어떻게해야합니까?
답변
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를 다시 시작하십시오.
답변
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>
답변
그들이 말하는 파일을 어디에서 찾을 수 있는지 모르는 사람들을 위해. 내 컴퓨터 (OSX)에는 다음이 있습니다.
- PyCharm CE :
/Applications/PyCharm CE.app/Contents/bin/idea.properties
- WebStorm :
/Applications/WebStorm.app/Contents/bin/idea.properties
답변
도움말 메뉴에서 위의 옵션을 변경해도 작동하지 않습니다. idea.properties 파일을 편집하고 큰 no로 변경하십시오.
MAC: /Applications/<Android studio>.app/Contents/bin[Open App contents]
Idea.max.intellisense.filesize=999999
WINDOWS: IDE_HOME\bin\idea.properties