How can i increase file tab size of sublime text 3?

6,833

Find your <theme>.sublime-theme file. Open it up and search for tab_label. The section should look something like this:

{
    "class": "tab_label",
    "font.size": 12, 
    "font.face": "Ubuntu"
},

Modify it according to your preferences and save the file. You should see the changes immediately.

To change the tab dimensions you can use the following section:

{
    "class": "tabset_control",
    "tab_height": 42,
    "tab_width": 160,
    "tab_min_width": 48
},

Note: Larger font sizes (e.g. > 12pt on my system) will get cut off, even if the tab height is adjusted accordingly. This is a well-known bug.

This answer originated from here.

Share:
6,833

Related videos on Youtube

tom
Author by

tom

Updated on September 18, 2022

Comments

  • tom
    tom over 1 year

    i just started using sublime text3 on windows 7.The font size of file tab is too small for me. Is there a way to change tab color to white? How can i increase file tab size?

    How can i increase file tab font size?