You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "Set to `always` to always reduce the number of recursive include paths provided to IntelliSense to only those paths currently referenced by #include statements. This requires first parsing files to determine which headers are included. Set to `never` to provide all recursive include paths to IntelliSense. Reducing the number of recursive include paths may improve IntelliSense performance when a very large number of recursive include paths are involved. Not reducing the number of recursive include paths can improve IntelliSense performance by avoiding the need to parse files to determine which include paths to provide. The `default` value is currently to reduce the number of recursive include paths provided to IntelliSense.",
26
+
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "The priority of recursive include paths. If set to `beforeSystemIncludes`, the recursive include paths will be searched before system include paths. If set to `afterSystemIncludes`, the recursive include paths will be searched after system include paths. `beforeSystemIncludes` would more closely reflect the search order of a compiler, while `afterSystemIncludes` may result in improved performance.",
27
+
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "The order in which subdirectories of recursive includes are searched.",
"c_cpp.configuration.default.mergeConfigurations.markdownDescription": "The value to use in a configuration if `mergeConfigurations` is either not specified or set to `${default}`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "The value to use in a configuration if `dotConfig` is either not specified or set to `${default}`.",
242
+
"c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "The value to use in a configuration if `recursiveIncludes.reduce` is either not specified or set to `${default}`.",
243
+
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "The value to use in a configuration if `recursiveIncludes.priority` is either not specified or set to `${default}`.",
244
+
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "The value to use in a configuration if `recursiveIncludes.order` is either not specified or set to `${default}`.",
"c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "如果设置为 `default`,则假定工作区的文件系统在 Windows 上不区分大小写,在 macOS 或 Linux 上区分大小写。如果设置为 `enabled`,则假定工作区的文件系统在 Windows 上区分大小写。",
@@ -426,8 +429,8 @@
426
429
"c_cpp.walkthrough.create.cpp.file.title": "创建 C++ 文件",
427
430
"c_cpp.walkthrough.create.cpp.file.description": "[打开](command:toSide:workbench.action.files.openFile)或[创建](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)一个 C++ 文件。请确保将其保存为 \".cpp\" 扩展名,例如 \"helloworld.cpp\"。\n[创建 C++ 文件](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)",
428
431
"c_cpp.walkthrough.create.cpp.file.altText": "使用 C++ 项目打开 C++ 文件或文件夹。",
429
-
"c_cpp.walkthrough.command.prompt.title": "从 VS 的开发人员命令提示启动",
430
-
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,C++ 扩展需要你从 VS 的开发人员命令提示符中启动 VS Code。请按照右侧的说明重新启动。\n[重新加载窗口](command:workbench.action.reloadWindow)",
432
+
"c_cpp.walkthrough.command.prompt.title": "从 Developer Command Prompt for VS 启动",
433
+
"c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,C++ 扩展需要你从 Developer Command Prompt for VS 启动 VS Code。请按照右侧的说明重新启动。\n[重新加载窗口](command:workbench.action.reloadWindow)",
431
434
"c_cpp.walkthrough.run.debug.title": "运行并调试 C++ 文件",
432
435
"c_cpp.walkthrough.run.debug.mac.description": "打开你的 C++ 文件,在编辑器右上角点击播放按钮,或者在文件上按 F5。选择“clang++ - 构建和调试活动文件”以使用调试器运行。",
433
436
"c_cpp.walkthrough.run.debug.linux.description": "打开 C++ 文件,在编辑器右上角点击播放按钮,或者在文件上按 F5。选择“g++ - 构建和调试活动文件”以使用调试器运行。",
"recursiveIncludes.reduce.description": "Set to {0} to reduce the number of recursive include paths provided to IntelliSense to only those paths currently referenced by #include statements. This requires first parsing files to determine which files are included. Set to {1} to provide all recursive include paths to IntelliSense. Reducing the number of recursive include paths may improve IntelliSense performance when a very large number of recursive include paths are involved. Not reducing the number of recursive include paths can improve IntelliSense performance by avoiding the need to parse files to determine which include paths to provide.",
"recursiveIncludes.priority.description": "The priority of recursive include paths. If set to {0}, the recursive include paths will be searched before system include paths. If set to {1}, the recursive include paths will be searched after system include paths.",
0 commit comments