aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/inlay_hints.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-28 10:30:46 +0000
committerAleksey Kladov <[email protected]>2020-02-28 10:31:53 +0000
commit84b009cbf75bf55d1079f8d7df0edddbc147deb0 (patch)
tree5fe781fe36820be2d0cb3e0d55e05da8daa8abdb /editors/code/src/inlay_hints.ts
parent4741ae785257bc894cd9a61c1d5e6479074c69b6 (diff)
Reset fontStyle for inlay hints
Otherwise, we get bold hints on `true` and `false`
Diffstat (limited to 'editors/code/src/inlay_hints.ts')
-rw-r--r--editors/code/src/inlay_hints.ts2
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) {
42const typeHintDecorationType = vscode.window.createTextEditorDecorationType({ 42const 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
48const parameterHintDecorationType = vscode.window.createTextEditorDecorationType({ 49const 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