[原创] IntelliJ IDEA打开大JSON文件的高亮配置

如果你在 IntelliJ IDEA 中打开一个比较大的JSON文件,可能会在IDE上方看到这样的提示:

The file size (xxx MB) exceeds the configured limit (2.56MB). Code insight features are not available.

这说明默认配置是:大小不超过 2.56MB 的文件,打开才有语法高亮显示,以及代码块折叠功能(代码编辑区域左侧点击 +、- 符号折叠同一段代码)。

你可以自定义配置增大这个值,方法:
点击菜单 Help->Edit Custom Properties,如果你以前没有自定义过,那么配置文件会不存在,按提示选择创建配置文件 idea.properties,在里面填上如下内容:

#---------------------------------------------------------------------
# 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=5120

5120单位为KB,表示把文件大小限制设置成5MB。
之后重新启动 IntelliJ IDEA,即可生效。
文章来源:https://www.codelast.com/
➤➤ 版权声明 ➤➤ 
转载需注明出处:codelast.com 
感谢关注我的微信公众号(微信扫一扫):

wechat qrcode of codelast

发表评论