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

后端 未结 5 1193
耶瑟儿~
耶瑟儿~ 2020-12-04 09:37

The current font size of the file sidebar is to small for me. How can I make it larger?

5条回答
  •  心在旅途
    2020-12-04 10:33

    Select Preferences / Browse Packages…, and go to Theme - Default directory.

    Open Default.sublime-theme with your editor and search for sidebar_label string. You should find something like:

    {
        "class": "sidebar_label",
        "color": [0, 0, 0],
        "font.bold": false
    }
    

    You can add here the font size you prefer:

    {
        "class": "sidebar_label",
        "color": [0, 0, 0],
        "font.bold": false,
        "font.size": 14.0
    }
    

提交回复
热议问题