- Start with the TS file ``` class Foo { public bar() { return 1; } } ``` - Use the settings ``` "editor.tokenColorCustomizations": { "textMateRules": [ { "scope": "meta.class", "settings": { "fontSize": 3, "lineHeight": 3 } } ] }, ``` - Notice all the tokens are large - Put the cursor at the beginning of the token `class` - Press delete and delete the 1st line - Notice the tokens on line 2 become small 🐛