Sublime Text 3 how to change the font size of the file sidebar?

前端 未结 13 624
难免孤独
难免孤独 2020-12-04 05:32

Though I have tried to modify \"font.size\" in classes like \"Label_control\" and \"sidebar_control\" in the Package \"Theme-Default\", the font size of the editor does not

13条回答
  •  感动是毒
    2020-12-04 05:51

    You need to change it at "class": "sidebar_label" Example, in your .sublime-theme file:

    // Sidebar entry
    {
        "class": "sidebar_label",
        "color": [212, 212, 213],
        "shadow_offset": [0, 0],
        "font.size":13
    }
    

    Credit

提交回复
热议问题