We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was thrown off to think this was an erdtree bug before discovering this behavior. I was getting this output:
erdtree
$ erd --sort name --hidden --suppress-size --layout inverted data/ data ├─ cplatform └─ zookeeper 2 directories
As opposed to something like
$ /usr/bin/tree data/ data/ |-- cplatform | |-- data | `-- logs `-- zookeeper |-- data `-- logs 6 directories, 0 files
I propose adding a count of "ignored" locations at the bottom:
$ erd --sort name --hidden --suppress-size --layout inverted data/ data ├─ cplatform └─ zookeeper 2 directories, 4 directories ignored
And/or a visual indication that items are omitted:
$ erd --sort name --hidden --suppress-size --layout inverted data/ data ├─ cplatform* └─ zookeeper* 2 directories, 4 directories ignored*
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was thrown off to think this was an
erdtree
bug before discovering this behavior. I was getting this output:As opposed to something like
I propose adding a count of "ignored" locations at the bottom:
And/or a visual indication that items are omitted:
The text was updated successfully, but these errors were encountered: