Skip to content

Commit d38052b

Browse files
committed
Set cache size to 1000
1 parent 71e2a85 commit d38052b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/editor/common/customEditorLabelService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class CustomEditorLabelService extends Disposable implements ICustomEdito
4040
private patterns: ICustomEditorLabelPattern[] = [];
4141
private enabled = true;
4242

43-
private cache = new MRUCache<URI, string>(3);
43+
private cache = new MRUCache<URI, string>(1000);
4444

4545
constructor(
4646
@IConfigurationService private readonly configurationService: IConfigurationService,

0 commit comments

Comments
 (0)