diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-03-12 17:11:25 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-12 17:11:25 +0000 |
| commit | fab40db8bdfdac5cde5789f74d1ec28e60a8bb7e (patch) | |
| tree | 5ec90c43aa979d20a21aabd54c801d4bc39b69fd /editors/code/src | |
| parent | d98a5fab46c5850a484349c50dda7cb823cc179a (diff) | |
| parent | ddfac09363fa778e3830cdb7a9ce6de3d779072e (diff) | |
| download | rust-fab40db8bdfdac5cde5789f74d1ec28e60a8bb7e.tar.gz rust-fab40db8bdfdac5cde5789f74d1ec28e60a8bb7e.zip | |
Merge #3566
3566: Fix docs r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/client.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts index e9f261c2419..b2c830b309a 100644 --- a/editors/code/src/client.ts +++ b/editors/code/src/client.ts @@ -29,11 +29,16 @@ export async function createClient(config: Config, serverPath: string): Promise< initializationOptions: { publishDecorations: !config.highlightingSemanticTokens, lruCapacity: config.lruCapacity, - inlayHints: config.inlayHints, + + inlayHintsType: config.inlayHints.typeHints, + inlayHintsParameter: config.inlayHints.parameterHints, + inlayHintsMaxLength: config.inlayHints.maxLength, + cargoWatchEnable: cargoWatchOpts.enable, cargoWatchArgs: cargoWatchOpts.arguments, cargoWatchCommand: cargoWatchOpts.command, cargoWatchAllTargets: cargoWatchOpts.allTargets, + excludeGlobs: config.excludeGlobs, useClientWatching: config.useClientWatching, featureFlags: config.featureFlags, |
