Skip to content

Commit 0eb2548

Browse files
committed
Fix color name
1 parent 6896ffa commit 0eb2548

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

editors/code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@
312312
],
313313
"colors": [
314314
{
315-
"id": "rust-analyzer.inlayHint",
315+
"id": "rust_analyzer.inlayHint",
316316
"description": "Color for inlay hints",
317317
"defaults": {
318318
"dark": "#A0A0A0F0",

editors/code/src/inlay_hints.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ interface InlayHint {
3636

3737
const typeHintDecorationType = vscode.window.createTextEditorDecorationType({
3838
after: {
39-
color: new vscode.ThemeColor('rust-analyzer.inlayHint'),
39+
color: new vscode.ThemeColor('rust_analyzer.inlayHint'),
4040
},
4141
});
4242

0 commit comments

Comments
 (0)