-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
Hello,
First of all, gitree is a pretty neat tool!
##I have a feature request.
It could be nice to group folders together and then files in the output.
Lets have an exemple:
└── api
├── assets
│ └── img
├── index.js
├── package-lock.json
├── package.json
└── twig
├── _layouts
│ └── default.twig
├── index.twig
└── partials
├── header.twig
└── socials.twig
What if folders were at the top ?
└── api
├── assets
│ └── img
└── twig
│ ├── _layouts
│ │ └── default.twig
│ └── partials
│ │ ├── header.twig
│ │ └── socials.twig
│ └── index.twig
├── index.js
├── package-lock.json
└── package.json
Does it make sense ?
Am I the only one looking for this kind of output ?