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
"description": "override colors of specific symbols and some ui components.",
107
109
"properties": {
110
+
"__om_Tag__": {
111
+
"type": "string",
112
+
"title": "Tag",
113
+
"description": "The color of the custom tag symbols in the outline."
114
+
},
115
+
"__om_Region__": {
116
+
"type": "string",
117
+
"title": "Region",
118
+
"description": "The color of the custom region symbols in the outline."
119
+
},
108
120
"visibleRange": {
109
121
"type": "string",
122
+
"title": "Visible Range",
110
123
"description": "The color of the visible range in the outline."
111
124
},
112
125
"focusingItem": {
@@ -190,6 +203,31 @@
190
203
}
191
204
}
192
205
},
206
+
"outline-map.region.enabled": {
207
+
"type": "boolean",
208
+
"default": true,
209
+
"markdownDescription": "Enable custom region and tag support. By default, regions start with the tag `#region <name>`and end with the tag `#endregion <name>`. This extension does not do semantic analysis for specific languages, and content that is not part of the comments section may also be recognized as a tag"
210
+
},
211
+
"outline-map.region.highlight": {
212
+
"type": "boolean",
213
+
"default": true,
214
+
"markdownDescription": "Enable semantic highlighting for custom regions and tags in the editor."
215
+
},
216
+
"outline-map.region.startRegion": {
217
+
"type": "string",
218
+
"default": "#region",
219
+
"description": "The start region tag. The word after the tag will be seen as the region name."
220
+
},
221
+
"outline-map.region.endRegion": {
222
+
"type": "string",
223
+
"default": "#endregion",
224
+
"description": "The end region tag. The word after the tag will be seen as the region name to close the region. If no name is specified, the last opened region will be closed."
225
+
},
226
+
"outline-map.region.tag": {
227
+
"type": "string",
228
+
"default": "#tag",
229
+
"description": "The start tag. The word after the tag will be seen as the tag name."
0 commit comments