diff options
author | Aleksey Kladov <[email protected]> | 2019-12-31 14:42:05 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-12-31 14:42:05 +0000 |
commit | 0eb254854d4b9756e114d976386a7bcef02d904d (patch) | |
tree | b5107955ff61c8309210b76bbde681e0d456e1f3 | |
parent | 6896ffab60bf4c277bebcd0bb35010e7d224b603 (diff) |
Fix color name
-rw-r--r-- | editors/code/package.json | 2 | ||||
-rw-r--r-- | editors/code/src/inlay_hints.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 269bed0f8..429d63f72 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -312,7 +312,7 @@ | |||
312 | ], | 312 | ], |
313 | "colors": [ | 313 | "colors": [ |
314 | { | 314 | { |
315 | "id": "rust-analyzer.inlayHint", | 315 | "id": "rust_analyzer.inlayHint", |
316 | "description": "Color for inlay hints", | 316 | "description": "Color for inlay hints", |
317 | "defaults": { | 317 | "defaults": { |
318 | "dark": "#A0A0A0F0", | 318 | "dark": "#A0A0A0F0", |
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 7575cead0..b6eb70168 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -36,7 +36,7 @@ interface InlayHint { | |||
36 | 36 | ||
37 | const typeHintDecorationType = vscode.window.createTextEditorDecorationType({ | 37 | const typeHintDecorationType = vscode.window.createTextEditorDecorationType({ |
38 | after: { | 38 | after: { |
39 | color: new vscode.ThemeColor('rust-analyzer.inlayHint'), | 39 | color: new vscode.ThemeColor('rust_analyzer.inlayHint'), |
40 | }, | 40 | }, |
41 | }); | 41 | }); |
42 | 42 | ||