Skip to content

Commit 28fd368

Browse files
committed
Fix trace and prettier
1 parent 9138317 commit 28fd368

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

editors/code/src/server.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ export class Server {
2020
run,
2121
debug: run
2222
};
23-
const traceOutputChannel = window.createOutputChannel('Rust Analyzer Language Server Trace');
23+
const traceOutputChannel = window.createOutputChannel(
24+
'Rust Analyzer Language Server Trace'
25+
);
2426
const clientOptions: lc.LanguageClientOptions = {
2527
documentSelector: [{ scheme: 'file', language: 'rust' }],
2628
initializationOptions: {
@@ -30,7 +32,7 @@ export class Server {
3032
};
3133

3234
Server.client = new lc.LanguageClient(
33-
'ra-lsp',
35+
'rust-analyzer',
3436
'Rust Analyzer Language Server',
3537
serverOptions,
3638
clientOptions

0 commit comments

Comments
 (0)