diff options
| author | Steffen Lyngbaek <steffenlyngbaek@gmail.com> | 2020-03-10 11:21:56 -0700 |
|---|---|---|
| committer | Steffen Lyngbaek <steffenlyngbaek@gmail.com> | 2020-03-10 14:36:01 -0700 |
| commit | cfb48df149bfa8a15b113b1a252598457a4ea392 (patch) | |
| tree | 8672e75715e2def7963e6250700125b17f233009 /editors/code | |
| parent | e98aff109a1c4bda6a05f16981898425c302aa0c (diff) | |
| download | rust-cfb48df149bfa8a15b113b1a252598457a4ea392.tar.gz rust-cfb48df149bfa8a15b113b1a252598457a4ea392.zip | |
Address Issues from Github
- Updated naming of config - Define struct in ra_ide and use remote derive in rust-analyzer/config - Make inlayConfig type more flexible to support more future types - Remove constructor only used in tests
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/src/config.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 5acce0752e6..b26bf10dae8 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -27,7 +27,9 @@ export class Config { private static readonly requiresReloadOpts = [ "cargoFeatures", "cargo-watch", - "highlighting.semanticTokens" + "highlighting.semanticTokens", + "inlayHintOpts.maxLength", + "inlayHintOpts.displayType", ] .map(opt => `${Config.rootSection}.${opt}`); |
