59

ファイルサイドバーの現在のフォントサイズは私には小さすぎます。どうすれば大きくできますか?

4

5 に答える 5

92
于 2012-12-08T21:46:24.950 に答える
20

Thanks! Some other settings to change font size (in these examples, smaller) of ALL the visible things!

Note that if you have a Project open (a folder) and the tabs and status bar showing, when you hit save you should see the changes realtime.

Sidebar Tree

{
    "class": "sidebar_tree",
    "row_padding": [0, 0],
    "indent": 6,
    "indent_offset": 17,
    ...
{
    "class": "sidebar_label",
    "color": [0, 0, 0],
    "font.bold": false,
    "font.size": 8.0
    ...

Tabs Open Files

{
    "class": "tabset_control",
    ...
    "content_margin": [0, 0, 3, 1],
    "tab_overlap": 24,
    "tab_width": 180,
    "tab_min_width": 48,
    "tab_height": 18,
    ...
{
    "class": "tab_label",
    ...
    "font.size": 8.0
    ...

Status Bar

{
    "class": "status_bar",
    ...
    "content_margin": [0, 0, 0, 0]
    ...

(I couldn't find where to set the font for the Status Bar, this will squish the bottom bar down though)

于 2013-02-28T12:18:21.320 に答える
8

Method probably work on the both version of ST

  1. check you current setup theme:

    1.1 open preference/settings user

    1.2 cmd + f and type theme

    1.3 you found your theme (may be not default, may be soda dark;) )

  2. install package: "PackageResourceViewer"
  3. cmd + shift + p - for open command pallete
  4. type packageresourceviewer

    4.1 type theme and select theme

    4.2 select your current theme file (for st3 dark3 theme)

    4.3 cmd +f to find "sidebar entry"

    4.4 type in the block: "font.size": NUMBER to the options

    4.5 save

  5. enjoy ;)

于 2015-10-08T14:08:49.130 に答える
7

This question has been answered for Sublime Text 2 but worth mentioning if you are in version 3 is that you can simply copy a package file and place it in your ../Packages/User directory then override the settings there.

EDIT:

You may have to dig around some in order to find where ST3 files were placed during installation.

I'm using Ubuntu and ST3's Main Package files are located at opt/sublime_text/packages. I then copy the package to override into the .config/sublime-text-3/Packages/User directory and then make my edits to that package.

于 2014-10-09T19:37:07.223 に答える
0

In Sublime Text 3, select Preferences >> Settings - User from the menubar, then add dpi_scale config to the file and save. That's all.

{
    ......,
    "dpi_scale": 1.5  //set this value as your need.
}
于 2015-08-24T13:07:45.870 に答える