mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Merge pull request #3321 from kjeremy/semantic-client
Enable SemanticTokens on the client
This commit is contained in:
commit
8c0d0894b6
2 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.42.0"
|
"vscode": "^1.42.0"
|
||||||
},
|
},
|
||||||
|
"enableProposedApi": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"vscode:prepublish": "tsc && rollup -c",
|
"vscode:prepublish": "tsc && rollup -c",
|
||||||
"package": "vsce package -o rust-analyzer.vsix",
|
"package": "vsce package -o rust-analyzer.vsix",
|
||||||
|
|
|
@ -3,6 +3,7 @@ import * as vscode from 'vscode';
|
||||||
|
|
||||||
import { Config } from './config';
|
import { Config } from './config';
|
||||||
import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed';
|
import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed';
|
||||||
|
import { SemanticTokensFeature } from 'vscode-languageclient/lib/semanticTokens.proposed';
|
||||||
|
|
||||||
export async function createClient(config: Config, serverPath: string): Promise<lc.LanguageClient> {
|
export async function createClient(config: Config, serverPath: string): Promise<lc.LanguageClient> {
|
||||||
// '.' Is the fallback if no folder is open
|
// '.' Is the fallback if no folder is open
|
||||||
|
@ -83,5 +84,7 @@ export async function createClient(config: Config, serverPath: string): Promise<
|
||||||
// Here we want to just enable CallHierarchyFeature since it is available on stable.
|
// Here we want to just enable CallHierarchyFeature since it is available on stable.
|
||||||
// Note that while the CallHierarchyFeature is stable the LSP protocol is not.
|
// Note that while the CallHierarchyFeature is stable the LSP protocol is not.
|
||||||
res.registerFeature(new CallHierarchyFeature(res));
|
res.registerFeature(new CallHierarchyFeature(res));
|
||||||
|
res.registerFeature(new SemanticTokensFeature(res));
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue