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
* comes from https://github.com/microsoft/vscode/blob/16d0a319b28caa4b6cf4e6801fd508282b7533e0/src/vs/workbench/contrib/files/browser/files.contribution.ts#L132
markdownDescription: nls.localize('exclude','Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search specific excludes. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).'),
...(isWebasboolean ? {'**/*.crswap': true/* filter out swap files used for local file access */} : undefined)
27
+
},
28
+
scope: ConfigurationScope.RESOURCE,
29
+
additionalProperties: {
30
+
anyOf: [
31
+
{
32
+
type: 'boolean',
33
+
description: nls.localize('files.exclude.boolean','The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.')
description: nls.localize('files.exclude.when','Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.')
43
+
}
44
+
}
45
+
}
46
+
]
47
+
}
48
+
},
49
+
[FILES_ASSOCIATIONS_CONFIG]: {
50
+
type: 'object',
51
+
markdownDescription: nls.localize('associations','Configure file associations to languages (e.g. `"*.extension": "html"`). These have precedence over the default associations of the languages installed.'),
* comes from https://github.com/microsoft/vscode/blob/16d0a319b28caa4b6cf4e6801fd508282b7533e0/src/vs/workbench/contrib/files/browser/files.contribution.ts#L132
markdownDescription: nls.localize('exclude','Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search specific excludes. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).'),
...(isWebasboolean ? {'**/*.crswap': true/* filter out swap files used for local file access */} : undefined)
38
-
},
39
-
scope: ConfigurationScope.RESOURCE,
40
-
additionalProperties: {
41
-
anyOf: [
42
-
{
43
-
type: 'boolean',
44
-
description: nls.localize('files.exclude.boolean','The glob pattern to match file paths against. Set to true or false to enable or disable the pattern.')
description: nls.localize('files.exclude.when','Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.')
54
-
}
55
-
}
56
-
}
57
-
]
58
-
}
59
-
},
60
-
[FILES_ASSOCIATIONS_CONFIG]: {
61
-
type: 'object',
62
-
markdownDescription: nls.localize('associations','Configure file associations to languages (e.g. `"*.extension": "html"`). These have precedence over the default associations of the languages installed.'),
0 commit comments