导航

Idea中文件大小配置

Posted on 2020-12-04 10:18  乔伊_413  阅读(3213)  评论(0编辑  收藏  举报

在开发中遇到自己给的一个txt文件大小达到19Mb

提醒:文件大小超过了2.56MB的默认值,有些功能不可靠

The file size(19.47MB ) exceeds configured limit(2.56MB). Code insight features are not acaliable

 

解决方式:

 1. 在顶部导航栏中找到Help中的 `Edit Custom Properties...`

 2. 点击 进入 `idea.properties`

 3. 编辑内容设置你想要的大小:

 

# custom IntelliJ IDEA properties
# 这里我设置的是20MB
idea.max.intellisense.filesize=20480

 

4. 重启Idea 完成配置