From b8b2f528065e558ded19391bd3e12648583ea1f6 Mon Sep 17 00:00:00 2001 From: "Paul \"TBBle\" Hampson" Date: Fri, 7 Jan 2022 22:12:19 +1100 Subject: [PATCH] Clarified that `FiraCode-Retina` only works with separated font files, and fontWeight: 450 works with variable-weight font file. See discussion/tests in #1318. --- VS-Code-Instructions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VS-Code-Instructions.md b/VS-Code-Instructions.md index fd9d519..4085b22 100644 --- a/VS-Code-Instructions.md +++ b/VS-Code-Instructions.md @@ -32,11 +32,12 @@ To achieve different weights, add one of the following (verified on Mac/Windows ```json "editor.fontWeight": "300" // Light "editor.fontWeight": "400" // Regular + "editor.fontWeight": "450" // Retina !! Only works with FiraCode-VF.ttf installed, see below when using separated font files (the normal case). "editor.fontWeight": "500" // Medium "editor.fontWeight": "600" // Bold ``` -To use Retina weight, change Font name to `FiraCode-Retina` if on macOS (exactly that, no spaces). It might be necessary to install the separate .ttf files and not the single variable `FiraCode-VF.ttf` file: +To use Retina weight when not using FiraCode-VF.ttf, change fontFamily to `FiraCode-Retina` if on macOS (exactly that, no spaces): ```json "editor.fontFamily": "FiraCode-Retina", ```