Skip to content

Commit dbf69c0

Browse files
authored
fix(vscode): improve naming of lsp channel (#4193)
1 parent 7a22757 commit dbf69c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • vscode/extension/src/lsp

vscode/extension/src/lsp/lsp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class LSPClient implements Disposable {
1616

1717
public async start(): Promise<Result<undefined, string>> {
1818
if (!outputChannel) {
19-
outputChannel = window.createOutputChannel('sqlmesh_actual_lsp_implementation')
19+
outputChannel = window.createOutputChannel('sqlmesh-lsp')
2020
}
2121

2222
const sqlmesh = await sqlmesh_lsp_exec()
@@ -62,7 +62,7 @@ export class LSPClient implements Disposable {
6262
// }
6363
}
6464

65-
this.client = new LanguageClient('sqlmesh-lsp-example', 'SQLMesh Language Server', serverOptions, clientOptions)
65+
this.client = new LanguageClient('sqlmesh-lsp', 'SQLMesh Language Server', serverOptions, clientOptions)
6666
await this.client.start()
6767
return ok(undefined)
6868
}

0 commit comments

Comments
 (0)