多重冒号(::)在编程中的核心作用:从命名空间到代码组织
2026/6/24 23:21:07
一款比较好用的文本编辑工具,主要插件多,这里记录一下使用方法
各种插件使用方法持续更新记录
Ubuntu18.04 + Vscode1.107
工作区配置主要适用对工作区的操作个性化定制,配置路径 .vscode/settings.json
{ "files.associations": { "*.h": "cpp" }, // 不包含文件 "files.exclude": { ".81_uboot/**": true, ".82_kernel/**": true, }, // 不跳转到这些文件夹 "C_Cpp.files.exclude": { "83_buildroot/**": true, "04_petalinux/**": true, }, // 不查找文件 "search.exclude": { "83_buildroot": true, "04_petalinux/**": true, }, // 不老弹出 Cmake 配置窗口 "cmake.ignoreCMakeListsMissing": true, }