Skip to content

Commit

Permalink
Fix lsp server path
Browse files Browse the repository at this point in the history
  • Loading branch information
Glyphack committed Oct 9, 2023
1 parent 4270ed7 commit c9d9c14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let client: LanguageClient;

export async function activate(_context: ExtensionContext) {
const traceOutputChannel = window.createOutputChannel("Enderpy Language Server trace");
const command = process.env.SERVER_PATH || "enderpy_lsp";
const command = process.env.SERVER_PATH || "enderpy-lsp";
const run: Executable = {
command,
options: {
Expand All @@ -34,7 +34,7 @@ export async function activate(_context: ExtensionContext) {
};

client = new LanguageClient("enderpy-language-server", "enderpy language server", serverOptions, clientOptions);
console.log("server started")
console.log("server started 2")

client.start();
}
Expand Down

0 comments on commit c9d9c14

Please sign in to comment.