Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
524 views
in Technique[技术] by (71.8m points)

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

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...