File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Extension/src/LanguageServer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments