vscode settings.json配置

{
    "search.exclude": {
        "**/*.o":true,
        /* 屏蔽不用的相关的文件 */
        "build":true,
    },
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        /* 屏蔽不用的相关的文件 */
        "build/make":true,
    },
     "files.associations": {
	}
}

猜你喜欢

转载自blog.csdn.net/liurunjiang/article/details/107068893