-
-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
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
Show all folders in --whale-spotting mode #669
Comments
I understand what you mean. It will be hard to satisfy all needs. Some folders are really not explorable, because they're way too slow. The real solution might be to add more nuances in the special paths directive, to have a "no enter but of course you enter when it's for computing sizes" and a "no enter, especially not for computing sizes". |
That would be even better. Thank you for considering it! |
A special paths entry is defined by 3 parameters: `show`, `list`, and `sum`. Each of them can be `default`, `always`, or `never`. Example configuration: ```Hjson special_paths: { "/media" : { list: "never" sum: "never" } "~/.config": { "show": "always" } "trav": { show: always list: "always", sum: "never" } "~/useless": { "show": "never" } "~/my-link-I-want-to-explore": { "list": "always" } } ``` Fix Canop#687 Fix Canop#669
I've defined several folders as "no-enter", e.g.
~/.local
.However, when launching broot in
--whale-spotting
mode, i would like to see all folders. I'm not aware of a way to do this and didn't find a flag for it.Is this already possible and, if not, could this be added as an additional flag? Something like
--ignore-special-paths
(just an example, i hope you understand what i mean).The text was updated successfully, but these errors were encountered: