Fix trace and prettier

This commit is contained in:
DJMcNab 2019-02-10 10:30:16 +00:00
parent 9138317021
commit 28fd368393

View file

@ -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