vscode 设置项目默认编码
一般放到自己的项目配置settings.json里
{
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, UseTab: Always, IndentWidth: 4, TabWidth: 4, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4, NamespaceIndentation: All, FixNamespaceComments: false }",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"C_Cpp.clang_format_sortIncludes": false,
"files.encoding": "gb2312",
}