2019-12-31 18:14:00 +01:00
|
|
|
import * as lc from 'vscode-languageclient';
|
2020-02-13 22:48:20 +02:00
|
|
|
import * as vscode from 'vscode';
|
2019-12-31 18:14:00 +01:00
|
|
|
|
2020-02-14 11:48:27 -05:00
|
|
|
import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed';
|
2020-02-27 10:19:56 +01:00
|
|
|
import { SemanticTokensFeature, DocumentSemanticsTokensSignature } from 'vscode-languageclient/lib/semanticTokens.proposed';
|
2019-12-31 18:14:00 +01:00
|
|
|
|
2020-04-25 20:52:50 +03:00
|
|
|
export function createClient(serverPath: string, cwd: string): lc.LanguageClient {
|
2019-12-31 18:14:00 +01:00
|
|
|
// '.' Is the fallback if no folder is open
|
2020-02-05 00:13:46 +02:00
|
|
|
// TODO?: Workspace folders support Uri's (eg: file://test.txt).
|
|
|
|
|
// It might be a good idea to test if the uri points to a file.
|
2019-12-31 18:14:00 +01:00
|
|
|
|
|
|
|
|
const run: lc.Executable = {
|
2020-02-15 00:42:32 +02:00
|
|
|
command: serverPath,
|
2020-03-31 10:23:18 +01:00
|
|
|
options: { cwd },
|
2019-12-31 18:14:00 +01:00
|
|
|
};
|
|
|
|
|
const serverOptions: lc.ServerOptions = {
|
|
|
|
|
run,
|
|
|
|
|
debug: run,
|
|
|
|
|
};
|
2020-02-13 22:48:20 +02:00
|
|
|
const traceOutputChannel = vscode.window.createOutputChannel(
|
2019-12-31 18:14:00 +01:00
|
|
|
'Rust Analyzer Language Server Trace',
|
|
|
|
|
);
|
2020-02-13 22:48:20 +02:00
|
|
|
|
2019-12-31 18:14:00 +01:00
|
|
|
const clientOptions: lc.LanguageClientOptions = {
|
|
|
|
|
documentSelector: [{ scheme: 'file', language: 'rust' }],
|
2020-04-02 12:47:58 +02:00
|
|
|
initializationOptions: vscode.workspace.getConfiguration("rust-analyzer"),
|
2019-12-31 18:14:00 +01:00
|
|
|
traceOutputChannel,
|
2020-02-27 10:19:56 +01:00
|
|
|
middleware: {
|
|
|
|
|
// Workaround for https://github.com/microsoft/vscode-languageserver-node/issues/576
|
|
|
|
|
async provideDocumentSemanticTokens(document: vscode.TextDocument, token: vscode.CancellationToken, next: DocumentSemanticsTokensSignature) {
|
2020-02-27 10:46:43 +01:00
|
|
|
const res = await next(document, token);
|
2020-02-27 10:19:56 +01:00
|
|
|
if (res === undefined) throw new Error('busy');
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
} as any
|
2019-12-31 18:14:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const res = new lc.LanguageClient(
|
|
|
|
|
'rust-analyzer',
|
|
|
|
|
'Rust Analyzer Language Server',
|
|
|
|
|
serverOptions,
|
|
|
|
|
clientOptions,
|
|
|
|
|
);
|
|
|
|
|
|
2020-02-14 11:48:27 -05:00
|
|
|
// To turn on all proposed features use: res.registerProposedFeatures();
|
2020-04-08 15:45:39 -04:00
|
|
|
// Here we want to enable CallHierarchyFeature and SemanticTokensFeature
|
|
|
|
|
// since they are available on stable.
|
|
|
|
|
// Note that while these features are stable in vscode their LSP protocol
|
|
|
|
|
// implementations are still in the "proposed" category for 3.16.
|
2020-02-14 11:48:27 -05:00
|
|
|
res.registerFeature(new CallHierarchyFeature(res));
|
2020-04-08 15:45:39 -04:00
|
|
|
res.registerFeature(new SemanticTokensFeature(res));
|
2020-02-26 08:42:26 -05:00
|
|
|
|
2019-12-31 18:14:00 +01:00
|
|
|
return res;
|
|
|
|
|
}
|