kuychaco / multirow-tabs

Display Atom editor tabs in multiple rows for easy navigation and viewing
MIT License
11 stars 3 forks source link

Slows down Atom and Crashes Occasionally #11

Open spacesailor24 opened 7 years ago

spacesailor24 commented 7 years ago

I've noticed when I'm working with 2 or more rows of tabs opened up (so like +16) switching between tabs and occasionally typing will freeze for a while and SOMETIMES Atom will become unresponsive and will require a force quit. I'm giving blame to this package, only because I really appreciate this and would only like to see it improve. I'm also fairly confident this package is the problem because I've only had freezing and crashing issues with this package enabled and disabling the package rectifies the just mentioned problems. If a solution can be found, that would be fantastic, if not, I thank you for taking the time to make such a package available as I use it heavily and there's quite frankly nothing else like it.

forivall commented 7 years ago

Add

.tab-bar {
  height: auto;
  flex-wrap: wrap;
  .tab {
    flex-basis: auto;
  }
}

(from https://github.com/kuychaco/multirow-tabs/blob/master/styles/multirow-tabs.less)

to your stylesheet, with multirow-tabs disabled and see if the same thing happens.