Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17efb9fd34 |
@@ -274,7 +274,7 @@
|
||||
"C_Cpp.vcFormat.indent.braces": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%c_cpp.configuration.vcFormat.indent.braces.description%",
|
||||
"markdownDescription": "%c_cpp.configuration.vcFormat.indent.braces.markdownDescription%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"C_Cpp.vcFormat.indent.multiLineRelativeTo": {
|
||||
@@ -299,12 +299,12 @@
|
||||
"alignToParenthesis",
|
||||
"indent"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"markdownEnumDescriptions": [
|
||||
"%c_cpp.configuration.vcFormat.indent.withinParentheses.alignToParenthesis.description%",
|
||||
"%c_cpp.configuration.vcFormat.indent.withinParentheses.indent.description%"
|
||||
"%c_cpp.configuration.vcFormat.indent.withinParentheses.indent.markdownDescription%"
|
||||
],
|
||||
"default": "indent",
|
||||
"description": "%c_cpp.configuration.vcFormat.indent.withinParentheses.description%",
|
||||
"markdownDescription": "%c_cpp.configuration.vcFormat.indent.withinParentheses.markdownDescription%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"C_Cpp.vcFormat.indent.preserveWithinParentheses": {
|
||||
@@ -816,7 +816,7 @@
|
||||
"Disabled"
|
||||
],
|
||||
"default": "Default",
|
||||
"description": "%c_cpp.configuration.autocomplete.description%",
|
||||
"markdownDescription": "%c_cpp.configuration.autocomplete.markdownDescription%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"C_Cpp.errorSquiggles": {
|
||||
@@ -870,7 +870,7 @@
|
||||
"C_Cpp.autoAddFileAssociations": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%c_cpp.configuration.autoAddFileAssociations.description%",
|
||||
"markdownDescription": "%c_cpp.configuration.autoAddFileAssociations.markdownDescription%",
|
||||
"scope": "window"
|
||||
},
|
||||
"C_Cpp.workspaceParsingPriority": {
|
||||
|
||||
@@ -21,19 +21,19 @@
|
||||
"c_cpp.command.generateEditorConfig.title": "Generate EditorConfig contents from VC Format settings",
|
||||
"c_cpp.command.GoToNextDirectiveInGroup.title": "Go to next preprocessor directive in conditional group",
|
||||
"c_cpp.command.GoToPrevDirectiveInGroup.title": "Go to previous preprocessor directive in conditional group",
|
||||
"c_cpp.configuration.formatting.description": "Configures the formatting engine",
|
||||
"c_cpp.configuration.formatting.description": "Configures the formatting engine.",
|
||||
"c_cpp.configuration.formatting.clangFormat.description": "clang-format will be used to format code.",
|
||||
"c_cpp.configuration.formatting.vcFormat.description": "The Visual C++ formatting engine will be used to format code.",
|
||||
"c_cpp.configuration.formatting.Default.description": "clang-format will be used to format code.",
|
||||
"c_cpp.configuration.formatting.Disabled.description": "Code formatting will be disabled.",
|
||||
"c_cpp.configuration.vcFormat.indent.braces.description": "Braces are indented by the amount specified in the Editor: Tab Size setting.",
|
||||
"c_cpp.configuration.vcFormat.indent.multiLineRelativeTo.description": "Determines what new line indentation is relative to",
|
||||
"c_cpp.configuration.vcFormat.indent.braces.markdownDescription": "Braces are indented by the amount specified in the `#editor.tabSize#` setting.",
|
||||
"c_cpp.configuration.vcFormat.indent.multiLineRelativeTo.description": "Determines what new line indentation is relative to.",
|
||||
"c_cpp.configuration.vcFormat.indent.multiLineRelativeTo.outermostParenthesis.description": "Indent new line relative to the outermost open parenthesis.",
|
||||
"c_cpp.configuration.vcFormat.indent.multiLineRelativeTo.innermostParenthesis.description": "Indent new line relative to the innermost open parenthesis.",
|
||||
"c_cpp.configuration.vcFormat.indent.multiLineRelativeTo.statementBegin.description": "Indent new line relative to the beginning of the current statement.",
|
||||
"c_cpp.configuration.vcFormat.indent.withinParentheses.description": "When a new line is typed, it is aligned under the opening parenthesis or based on \"C_Cpp.vcFormat.indent.multiLineRelativeTo\".",
|
||||
"c_cpp.configuration.vcFormat.indent.withinParentheses.markdownDescription": "When a new line is typed, it is aligned under the opening parenthesis or based on `#C_Cpp.vcFormat.indent.multiLineRelativeTo#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.withinParentheses.alignToParenthesis.description": "New line is aligned under the opening parenthesis.",
|
||||
"c_cpp.configuration.vcFormat.indent.withinParentheses.indent.description": "New line is indented based on \"C_Cpp.vcFormat.indent.multiLineRelativeTo\".",
|
||||
"c_cpp.configuration.vcFormat.indent.withinParentheses.indent.markdownDescription": "New line is indented based on `#C_Cpp.vcFormat.indent.multiLineRelativeTo#`.",
|
||||
"c_cpp.configuration.vcFormat.indent.preserveWithinParentheses.description": "In existing code, preserve the existing indent alignment of new lines within parentheses.",
|
||||
"c_cpp.configuration.vcFormat.indent.caseLabels.description": "Labels are indented relative to switch statements by the amount specified in the Editor: Tab Size setting.",
|
||||
"c_cpp.configuration.vcFormat.indent.caseContents.description": "Code inside case block is indented relative to its label by the amount specified in the Editor: Tab Size setting",
|
||||
@@ -117,14 +117,14 @@
|
||||
"c_cpp.configuration.clang_format_sortIncludes.description": "If set, overrides the include sorting behavior determined by the SortIncludes parameter.",
|
||||
"c_cpp.configuration.intelliSenseEngine.description": "Controls the IntelliSense provider. \"Tag Parser\" provides \"fuzzy\" results that are not context-aware. \"Default\" provides context-aware results. \"Disabled\" turns off C/C++ language service features.",
|
||||
"c_cpp.configuration.intelliSenseEngineFallback.description": "Controls whether the IntelliSense engine will automatically switch to the Tag Parser for translation units containing #include errors.",
|
||||
"c_cpp.configuration.autocomplete.description": "Controls the auto-completion provider. \"Default\" uses the active IntelliSense engine. \"Disabled\" uses the word-based completion provided by Visual Studio Code.",
|
||||
"c_cpp.configuration.autocomplete.markdownDescription": "Controls the auto-completion provider. `Default` uses the active IntelliSense engine. `Disabled` uses the word-based completion provided by Visual Studio Code.",
|
||||
"c_cpp.configuration.errorSquiggles.description": "Controls whether suspected compile errors detected by the IntelliSense engine will be reported back to the editor. This setting is ignored by the Tag Parser engine.",
|
||||
"c_cpp.configuration.dimInactiveRegions.description": "Controls whether inactive preprocessor blocks are colored differently than active code. This setting has no effect if IntelliSense is disabled or if using the Default High Contrast theme.",
|
||||
"c_cpp.configuration.inactiveRegionOpacity.description": "Controls the opacity of inactive preprocessor blocks. Scales between 0.1 and 1.0. This setting only applies when inactive region dimming is enabled.",
|
||||
"c_cpp.configuration.inactiveRegionForegroundColor.description": "Controls the font coloring of inactive preprocessor blocks. Input is in the form a hexadecimal color code or a valid Theme Color. If not set, this defaults to the syntax coloring scheme of the editor. This setting only applies when inactive region dimming is enabled.",
|
||||
"c_cpp.configuration.inactiveRegionBackgroundColor.description": "Controls the background coloring of inactive preprocessor blocks. Input is in the form a hexadecimal color code or a valid Theme Color. If not set, this defaults to transparent. This setting only applies when inactive region dimming is enabled.",
|
||||
"c_cpp.configuration.loggingLevel.description": "The verbosity of logging in the Output Panel. The order of levels from least verbose to most verbose is: None < Error < Warning < Information < Debug.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.description": "Controls whether files are automatically added to files.associations when they are the target of a navigation operation from a C/C++ file.",
|
||||
"c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Controls whether files are automatically added to `#files.associations#` when they are the target of a navigation operation from a C/C++ file.",
|
||||
"c_cpp.configuration.workspaceParsingPriority.description": "Controls whether parsing of the non-active workspace files uses sleeps to avoid using 100% CPU. The values highest/high/medium/low correspond to approximately 100/75/50/25% CPU usage.",
|
||||
"c_cpp.configuration.workspaceSymbols.description": "The symbols to include in the query results when 'Go to Symbol in Workspace' is invoked.",
|
||||
"c_cpp.configuration.exclusionPolicy.description": "Instructs the extension when to use the \"files.exclude\" setting when determining which files should be added to the code navigation database while traversing through the paths in the \"browse.path\" array. \"checkFolders\" means that the exclusion filters will only be evaluated once per folder (individual files are not checked). \"checkFilesAndFolders\" means that the exclusion filters will be evaluated against every file and folder encountered. If your \"files.exclude\" setting only contains folders, then \"checkFolders\" is the best choice and will increase the speed at which the extension can initialize the code navigation database.",
|
||||
|
||||
Reference in New Issue
Block a user