Skip to content

Commit c0c1af2

Browse files
committed
web - properly filter out *.crswap
1 parent c4fe803 commit c0c1af2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/files/browser/files.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ configurationRegistry.registerConfiguration({
140140
'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)."),
141141
'default': {
142142
...{ '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true, '**/Thumbs.db': true },
143-
...(isWeb ? { '**/.crswap': true /* filter out swap files used for local file access */ } : undefined)
143+
...(isWeb ? { '**/*.crswap': true /* filter out swap files used for local file access */ } : undefined)
144144
},
145145
'scope': ConfigurationScope.RESOURCE,
146146
'additionalProperties': {

0 commit comments

Comments
 (0)