Fix trace and prettier
This commit is contained in:
parent
9138317021
commit
28fd368393
1 changed files with 4 additions and 2 deletions
|
@ -20,7 +20,9 @@ export class Server {
|
|||
run,
|
||||
debug: run
|
||||
};
|
||||
const traceOutputChannel = window.createOutputChannel('Rust Analyzer Language Server Trace');
|
||||
const traceOutputChannel = window.createOutputChannel(
|
||||
'Rust Analyzer Language Server Trace'
|
||||
);
|
||||
const clientOptions: lc.LanguageClientOptions = {
|
||||
documentSelector: [{ scheme: 'file', language: 'rust' }],
|
||||
initializationOptions: {
|
||||
|
@ -30,7 +32,7 @@ export class Server {
|
|||
};
|
||||
|
||||
Server.client = new lc.LanguageClient(
|
||||
'ra-lsp',
|
||||
'rust-analyzer',
|
||||
'Rust Analyzer Language Server',
|
||||
serverOptions,
|
||||
clientOptions
|
||||
|
|
Loading…
Add table
Reference in a new issue