Skip to content

Commit 0dc01ba

Browse files
committed
tweak
1 parent 7b26c0c commit 0dc01ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Extension/src/LanguageServer/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2772,15 +2772,15 @@ export class DefaultClient implements Client {
27722772

27732773
const message = localize(
27742774
"parsing.stats.large.project",
2775-
'Enumerated {0} files with {1} source files detected. You may want to consider excluding some files for better performance.',
2775+
'Enumerated {0} files with {1} C/C++ source files detected. You may want to consider excluding some files for better performance.',
27762776
filesDiscovered,
27772777
parsableFiles);
27782778
const learnMore = localize('learn.more', 'Learn More');
27792779
const dontShowAgain = localize('dont.show.again', 'Don\'t Show Again');
27802780

27812781
// We only want to show this once per session.
27822782
this.excessiveFilesWarningShown = true;
2783-
const response = await vscode.window.showWarningMessage(message, learnMore, dontShowAgain);
2783+
const response = await vscode.window.showInformationMessage(message, learnMore, dontShowAgain);
27842784

27852785
if (response === dontShowAgain) {
27862786
showExcessiveFilesWarning.Value = false;

0 commit comments

Comments
 (0)