Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1359,17 +1359,6 @@
"markdownDescription": "%c_cpp.configuration.default.dotConfig.markdownDescription%",
"scope": "resource"
},
"C_Cpp.default.recursiveIncludes.reduce": {
"type": "string",
"enum": [
"",
"always",
"never",
"default"
],
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription%",
"scope": "resource"
},
"C_Cpp.default.recursiveIncludes.priority": {
"type": "string",
"enum": [
Expand Down
6 changes: 0 additions & 6 deletions Extension/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -733,12 +733,6 @@
"Markdown text between `` should not be translated or localized (they represent literal text) and the capitalization, spacing, and punctuation (including the ``) should not be altered."
]
},
"c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": {
"message": "The value to use in a configuration if `recursiveIncludes.reduce` is either not specified or set to `${default}`.",
"comment": [
"Markdown text between `` should not be translated or localized (they represent literal text) and the capitalization, spacing, and punctuation (including the ``) should not be altered."
]
},
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": {
Comment thread
Colengms marked this conversation as resolved.
"message": "The value to use in a configuration if `recursiveIncludes.priority` is either not specified or set to `${default}`.",
"comment": [
Expand Down
1 change: 0 additions & 1 deletion Extension/src/LanguageServer/configurations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ export interface Browse {
}

export interface RecursiveIncludes {
reduce?: string;
priority?: string;
order?: string;
}
Expand Down
15 changes: 0 additions & 15 deletions Extension/ui/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -737,21 +737,6 @@
</div>
</div>

<div class="section">
<div class="section-title" data-loc-id="recursiveIncludes.reduce">Recursive includes: reduce</div>
<div class="section-text">
<span data-loc-id="recursiveIncludes.reduce.description">Set to <code>always</code> 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 <code>never</code> 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.</span>
</div>
<div>
<select name="inputValue" id="recursiveIncludes.reduce" class="select-default">
<option value="${default}">${default}</option>
<option value="always">always</option>
<option value="never">never</option>
<option value="default">default</option>
</select>
</div>
</div>

<div class="section">
<div class="section-title" data-loc-id="recursiveIncludes.priority">Recursive includes: priority</div>
Comment thread
Colengms marked this conversation as resolved.
<div class="section-text">
Expand Down
Loading