Denys Séguret

Results 760 comments of Denys Séguret

Can you try to define verbs with complete paths to the programs ? Something like ``` { invocation: "md {subpath}" external: ["c:/path/to/mkdir.exe", "-p", "{directory}/{subpath}"] } ```

We could define all built-in internals like ` ["cmd", "/c", "mkdir", "{subpath}"]` on Windows, for example with `#[cfg]` attributes in [there](https://github.com/Canop/broot/blob/master/src/verb/builtin.rs#L48). But I can't do that myself as I don't...

There are some concerns due to ergonomics. For example it makes it impossible to have useful hints on how to complete the command. So I'm not sure I'll implement this.

This might be a dumb question but what's exactly the goal ?

Right now I'd need people to test the git branch. ![image](https://user-images.githubusercontent.com/617006/73134838-abee7100-403b-11ea-98d3-bf957d8e079b.png)

I just pushed a testable version on the "git" branch. The main changes are * leveraging libgit2 to handle finding what files to ignore (mostly to handle corner cases like...

I changed a lot of things in the git ignoring system. I'd like to have confirmation everything looks OK.

Question to testers: what should in your opinion be the value of the git status display toggle ? Should the status display be enabled by default ?

I pushed a new commit which makes the git_file_info not the default but also add more measurement points. I'd appreciate to have the DEBUG mode log of broot when it...

I've merged the git branch into master. But now the git stats computation is done in a background thread and doesn't slow navigation or display. Git information aren't displayed by...