Thayne McCombs

Results 329 comments of Thayne McCombs

I looked into this a bit. First the easy one: I made a PR to switch from using tempfile to tempdir. For `time`: ` time` fixed that RUSTSEC issue by...

For that use case what is the advantage of fd over grep or rg?

``` fzf --multi --sync < file.txt | xargs -d '\n' realpath | grep '\.ogg$' ``` ?

A possible work around for this: Create a wrapper script that looks like ```bash com="$1" shift case "$com" in du) du -h "$@";; grep) grep --color=always --line-number "$@";; rm) rm...

@raphael-ratepay in the example you gave I don't think adding `--no-ignore-vcs` would work, unless you had a `.git` directory inside a directory that was itself gitignored. Although, it would still...

Actually fd already has an option like `--ignore-pattern`: `--exclude`. Unfortunately, using `--exclude !.git` doesn't work, due to how overrides are implemented in the `ignore` crate (since it takes a list...

I'm also fine with any of those options.

I'm torn on this. Reasons I think automatically ignoring .git is good: - It is consistent with the behavior of git commands. For example, `git ls-files --cached --others --exclude-standard` doesn't...

I'm not really sure what you are asking for.

This seems like it might be a duplicate of https://github.com/sharkdp/fd/issues/1441 (since what you really want is the functionality of the ignore crate), although the ignore crate is part of the...