Reputation: 63
The picture attached shows the problem.
As you can see from the picture, the tabs are clustered together.
How can I space them out so that they spread out evenly in the entire space?
Upvotes: 5
Views: 2429
Reputation: 2288
This is a better solution: Go to Settings > Themes > theme settings (the gear icon next to the UI theme dropbox) and use the Tab Sizing option
source: https://discuss.atom.io/t/the-tabs-got-shorter-in-v1-8-0-what-happened-how-do-i-go-back/29791
Upvotes: 5
Reputation: 717
You have to edit the custom stylesheet. In the menu bar go to "Atom" > "Stylesheet..." and copy this into the custom stylesheet file:
.tab-bar .tab {
flex-grow: 1 !important;
max-width: none;
}
After saving the tabs should spread.
Upvotes: 5