postcasio / tree-view-open-files

Atom package to show open files in a list above the tree view. (like Sublime Text)
MIT License
27 stars 20 forks source link

Possible for open files to expand and scroll with the rest of the sidebar? #33

Open isGabe opened 8 years ago

isGabe commented 8 years ago

The space for open files appears to be a fixed height, which scrolls once more file are open than will fit in that vertical space. For me this almost defeats the purpose,as I have to hunt for open files.

Honestly what I really am looking for is just how ST does it. Having open files is one of those little features that is a deal maker/breaker for me.

maprihoda commented 8 years ago

+1 for ST-like functionality, they have it implemented correctly

Instagit commented 8 years ago

max-height for the element is set to 250px. For a workaround, add this to your styles.less:

.tree-view-open-files {
  max-height: none !important;
  overflow: visible;
}

It should do exactly what you want.