We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6896ffa commit 0eb2548Copy full SHA for 0eb2548
editors/code/package.json
@@ -312,7 +312,7 @@
312
],
313
"colors": [
314
{
315
- "id": "rust-analyzer.inlayHint",
+ "id": "rust_analyzer.inlayHint",
316
"description": "Color for inlay hints",
317
"defaults": {
318
"dark": "#A0A0A0F0",
editors/code/src/inlay_hints.ts
@@ -36,7 +36,7 @@ interface InlayHint {
36
37
const typeHintDecorationType = vscode.window.createTextEditorDecorationType({
38
after: {
39
- color: new vscode.ThemeColor('rust-analyzer.inlayHint'),
+ color: new vscode.ThemeColor('rust_analyzer.inlayHint'),
40
},
41
});
42
0 commit comments