Skip to content

Commit

Permalink
feat: show "Starting LSP: templ" as a status bar message (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
soyangel authored Mar 5, 2024
1 parent ba185d4 commit fd2ae87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export async function buildLanguageClient(): Promise<LanguageClient> {
await stopLanguageClient();
}

vscode.window.showInformationMessage(`Starting LSP: templ ${args.join(" ")}`);
vscode.window.setStatusBarMessage(`Starting LSP: templ ${args.join(" ")}`, 3000);

const c = new LanguageClient(
"templ", // id
Expand Down

0 comments on commit fd2ae87

Please sign in to comment.