Registrieren

Registierung erfolgt in Kürze...
Fleebs-Logo
Details werden geladen...

How can I set font.size for BOTH tabs and the status bar? - Technical Support - Sublime Forum

Per the code provided in this other topic (Can we change font size for tabs in ST4?), I can change either the font.size for tab_label or status_bar. However any way I try to code it, I have not figured out how to change both settings. Here is one example of what I tried: { “variables”: { }, “rules”: [ { “class”: “label_control”, “parents”: [{“class”: “status_bar”}], “font.size”: 19, } { “class”: “tab_label”, “font.size”: 19, }, ] } And I have tried other ways of arranging brac...