提交 c0c1af29 编写于 作者: B Benjamin Pasero

web - properly filter out *.crswap

上级 c4fe8031
......@@ -140,7 +140,7 @@ configurationRegistry.registerConfiguration({
'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)."),
'default': {
...{ '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true, '**/Thumbs.db': true },
...(isWeb ? { '**/.crswap': true /* filter out swap files used for local file access */ } : undefined)
...(isWeb ? { '**/*.crswap': true /* filter out swap files used for local file access */ } : undefined)
},
'scope': ConfigurationScope.RESOURCE,
'additionalProperties': {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册