diff options
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 5951cf1b4..6871bc111 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -42,12 +42,14 @@ export function activateInlayHints(ctx: Ctx) { | |||
42 | const typeHintDecorationType = vscode.window.createTextEditorDecorationType({ | 42 | const typeHintDecorationType = vscode.window.createTextEditorDecorationType({ |
43 | after: { | 43 | after: { |
44 | color: new vscode.ThemeColor('rust_analyzer.inlayHint'), | 44 | color: new vscode.ThemeColor('rust_analyzer.inlayHint'), |
45 | fontStyle: "normal", | ||
45 | }, | 46 | }, |
46 | }); | 47 | }); |
47 | 48 | ||
48 | const parameterHintDecorationType = vscode.window.createTextEditorDecorationType({ | 49 | const parameterHintDecorationType = vscode.window.createTextEditorDecorationType({ |
49 | before: { | 50 | before: { |
50 | color: new vscode.ThemeColor('rust_analyzer.inlayHint'), | 51 | color: new vscode.ThemeColor('rust_analyzer.inlayHint'), |
52 | fontStyle: "normal", | ||
51 | }, | 53 | }, |
52 | }); | 54 | }); |
53 | 55 | ||