Canop / broot

A new way to see and navigate directory trees : https://dystroy.org/broot
MIT License
10.64k stars 234 forks source link

new definition of special paths #817

Closed Canop closed 8 months ago

Canop commented 9 months ago

A special paths entry is defined by 3 parameters: show, list, and sum. Each of them can be default, always, or never.

Example configuration:

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 #687 Fix #669