Skip to content

Commit eab23cd

Browse files
committed
microsoft#21214 clairify that only project wide intellisense is being disabled when configure excludes shows
1 parent 1ad0809 commit eab23cd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/typescript/src/utils/projectStatus.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ class ExcludeHintItem {
5050
public show(configFileName: string, largeRoots: string, onExecute: () => void) {
5151
this._currentHint = {
5252
message: largeRoots.length > 0
53-
? localize('hintExclude', "To enable JavaScript/TypeScript IntelliSense, exclude folders with many files, like: {0}", largeRoots)
54-
: localize('hintExclude.generic', "To enable JavaScript/TypeScript IntelliSense, exclude large folders with source files that you do not work on."),
53+
? localize('hintExclude', "To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}", largeRoots)
54+
: localize('hintExclude.generic', "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on."),
5555
options: [{
5656
title: localize('open', "Configure Excludes"),
5757
execute: () => {
@@ -73,7 +73,7 @@ class ExcludeHintItem {
7373
};
7474
this._item.tooltip = this._currentHint.message;
7575
this._item.text = localize('large.label', "Configure Excludes");
76-
this._item.tooltip = localize('hintExclude.tooltip', "To enable JavaScript/TypeScript IntelliSense, exclude large folders with source files that you do not work on.");
76+
this._item.tooltip = localize('hintExclude.tooltip', "To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.");
7777
this._item.color = '#A5DF3B';
7878
this._item.show();
7979
this._client.logTelemetry('js.hintProjectExcludes');

0 commit comments

Comments
 (0)