We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9138317 commit 28fd368Copy full SHA for 28fd368
editors/code/src/server.ts
@@ -20,7 +20,9 @@ export class Server {
20
run,
21
debug: run
22
};
23
- const traceOutputChannel = window.createOutputChannel('Rust Analyzer Language Server Trace');
+ const traceOutputChannel = window.createOutputChannel(
24
+ 'Rust Analyzer Language Server Trace'
25
+ );
26
const clientOptions: lc.LanguageClientOptions = {
27
documentSelector: [{ scheme: 'file', language: 'rust' }],
28
initializationOptions: {
@@ -30,7 +32,7 @@ export class Server {
30
32
31
33
34
Server.client = new lc.LanguageClient(
- 'ra-lsp',
35
+ 'rust-analyzer',
36
'Rust Analyzer Language Server',
37
serverOptions,
38
clientOptions
0 commit comments