aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/inlay_hints.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-31 14:42:05 +0000
committerAleksey Kladov <[email protected]>2019-12-31 14:42:05 +0000
commit0eb254854d4b9756e114d976386a7bcef02d904d (patch)
treeb5107955ff61c8309210b76bbde681e0d456e1f3 /editors/code/src/inlay_hints.ts
parent6896ffab60bf4c277bebcd0bb35010e7d224b603 (diff)
Fix color name
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r--editors/code/src/inlay_hints.ts2
1 files changed, 1 insertions, 1 deletions
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
37const typeHintDecorationType = vscode.window.createTextEditorDecorationType({ 37const 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