brackets打开大项目的解决办法

来源:互联网 发布:最优化问题的典型案例 编辑:程序博客网 时间:2024/05/03 22:31

用brackets打开kibaba项目时,提示如下错误:

This project contains more than 30,000 files. Features that operate across multiple files may be disabled or behave as if the project is empty.

解决办法:
1. 安装brackets-file-tree-exclude插件
2. 配置排除信息,依次打开菜单Debug > Open preferences file
3. 或在项目下创建.brackets.json文件[具有更高优先级],并添加如下内容:

{    "brackets-file-tree-exclude.excludeList": [        "/.git/",        "/dist/",        "/bower_components/",        "/node_modules/",        "/.svn/"    ]}
原创粉丝点击