Skip to content

Commit e461a86

Browse files
committed
Rename depthFirst setting value to preOrder
1 parent 3c5e0f2 commit e461a86

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Extension/c_cpp_properties.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
"markdownDescription": "The order in which subdirectories of recursive includes are searched.",
240240
"type": "string",
241241
"enum": [
242-
"depthFirst",
242+
"preOrder",
243243
"breadthFirst",
244244
"${default}"
245245
]

Extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@
922922
"type": "string",
923923
"enum": [
924924
"",
925-
"depthFirst",
925+
"preOrder",
926926
"breadthFirst"
927927
],
928928
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.order.markdownDescription%",
@@ -6651,4 +6651,4 @@
66516651
"postcss": "^8.4.31",
66526652
"gulp-typescript/**/glob-parent": "^5.1.2"
66536653
}
6654-
}
6654+
}

Extension/ui/settings.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@
759759
<div>
760760
<select name="inputValue" id="recursiveIncludes.order" class="select-default">
761761
<option value="${default}">${default}</option>
762-
<option value="depthFirst">depthFirst</option>
762+
<option value="preOrder">preOrder</option>
763763
<option value="breadthFirst">breadthFirst</option>
764764
</select>
765765
</div>

0 commit comments

Comments
 (0)