tree-view-open-files icon indicating copy to clipboard operation
tree-view-open-files copied to clipboard

Not working in new Atom v1.6 update

Open luckyshot opened this issue 9 years ago • 3 comments

The Pane doesn't load open tabs anymore in the new Atom v1.6 update

luckyshot avatar Mar 18 '16 00:03 luckyshot

Commenting this CSS property solved the issue for me:

.tree-view-open-files { /* overflow: auto; */ }

luckyshot avatar Mar 18 '16 01:03 luckyshot

Seems to be working in Atom 1.6.2 and shows a few files.

This fix works great for showing all of them (will cut-off if you have more open tabs than vertical space on your screen for your tree-view). Inspired by https://github.com/bloopletech/config/commit/33431dff6f0616fa639d118bf2d466572a2bc1e8, could be more releated to https://github.com/postcasio/tree-view-open-files/issues/33

.tree-view-open-files {
  overflow: visible !important;
  max-height: 30vh !important;

  transition: max-height 0.2s ease;

  &:hover {
    max-height: 100vh !important;
  }
 }

MadLittleMods avatar Apr 15 '16 15:04 MadLittleMods

@Try this, fixed for atom 1.18.0 https://github.com/sergiu-gordienco/tree-view-open-files

on atom is tree-view-open-files-updated

apm install tree-view-open-files-updated

https://atom.io/packages/tree-view-open-files-updated

sergiu-gordienco avatar Aug 01 '17 14:08 sergiu-gordienco