Sublime Forum

Span file tab bar to take full width

#1

Is there any way to make tabs in the file tab bar span the full width they possibly can, just like tabs in Safari?

How Safari does it:

How Sublime Text does it:

I’d like Sublime Text to behave like Safari, if that’s possible

0 Likes

#2

Yes, it should work by creating an overriding theme file in your user package with following content.

Packages/User/WhatEverTheme.sublime-theme

{
    "rules": [
        {
            "class": "tabset_control",
            "tab_width": 10000,
        },
    ],
}

Note: The easiest way to create an overriding theme is by using PackageDev’s “Edit Current Theme” command.

1 Like

#3

Thanks a lot for the reply! I appreciate it :slight_smile: The only problem is that it still is differently sized because of different file titles, but it’s not a huge deal. Thanks again :slight_smile:

0 Likes