@@ -46,9 +46,9 @@ export async function restartClient(context: vscode.ExtensionContext): Promise<v
46
46
updateStatusItem ( result . version ) ;
47
47
} catch ( reason ) {
48
48
if ( reason instanceof Error ) {
49
- void vscode . window . showWarningMessage ( `Failed to run Zig Language Server (ZLS) : ${ reason . message } ` ) ;
49
+ void vscode . window . showWarningMessage ( `Failed to run ZLS language server : ${ reason . message } ` ) ;
50
50
} else {
51
- void vscode . window . showWarningMessage ( "Failed to run Zig Language Server (ZLS) " ) ;
51
+ void vscode . window . showWarningMessage ( "Failed to run ZLS language server " ) ;
52
52
}
53
53
updateStatusItem ( null ) ;
54
54
}
@@ -85,7 +85,7 @@ async function startClient(zlsPath: string, zlsVersion: semver.SemVer): Promise<
85
85
} ,
86
86
} ;
87
87
88
- const languageClient = new LanguageClient ( "zig.zls" , "Zig Language Server " , serverOptions , clientOptions ) ;
88
+ const languageClient = new LanguageClient ( "zig.zls" , "ZLS language server " , serverOptions , clientOptions ) ;
89
89
await languageClient . start ( ) ;
90
90
// Formatting is handled by `zigFormat.ts`
91
91
languageClient . getFeature ( "textDocument/formatting" ) . dispose ( ) ;
@@ -329,7 +329,7 @@ async function isEnabled(): Promise<boolean> {
329
329
return false ;
330
330
case "ask" : {
331
331
const response = await vscode . window . showInformationMessage (
332
- "We recommend enabling the ZLS Language Server for a better editing experience. Would you like to install it?" ,
332
+ "We recommend enabling the ZLS language server for a better editing experience. Would you like to install it?" ,
333
333
{ modal : true } ,
334
334
"Yes" ,
335
335
"No" ,
@@ -410,7 +410,7 @@ export async function activate(context: vscode.ExtensionContext) {
410
410
} ,
411
411
} ;
412
412
413
- outputChannel = vscode . window . createOutputChannel ( "Zig Language Server " ) ;
413
+ outputChannel = vscode . window . createOutputChannel ( "ZLS language server " ) ;
414
414
statusItem = vscode . languages . createLanguageStatusItem ( "zig.zls.status" , ZIG_MODE ) ;
415
415
statusItem . name = "ZLS" ;
416
416
updateStatusItem ( null ) ;
0 commit comments