Tavian Barnes

Results 46 issues of Tavian Barnes

Partial fix for #710 and #980.

From [chatter] on Zulip, it looks like flume is a candidate to replace std::sync::mpsc if it is not deprecated. This is an experiment to try it instead of std or...

```console tavianator@tachyon $ ln -s nowhere foo/bar/baz/link tavianator@tachyon $ fd link foo -L foo/bar/baz/link tavianator@tachyon $ fd link foo -L --min-depth=1 tavianator@tachyon $ fd link foo -L --min-depth=0 tavianator@tachyon $...

bug
help wanted

Here's a weird corner case: ``` $ mkdir ./- $ touch ./-/foo $ fd . - $ fd . ./- ``` I think this is due to this line in...

bug

To implement https://github.com/sharkdp/fd/issues/612#issuecomment-896049390, I'd need some way for WalkParallel to report that some files were ignored during the search. I can think of a few ways to do it. My...

Currently `ignore` handles the literal path `-` as meaning stdin: https://github.com/BurntSushi/ripgrep/blob/9b01a8f9ae53ebcd05c27ec21843758c2c1e823f/crates/ignore/src/walk.rs#L1241 This is probably desirable for ripgrep but other users of `ignore` (such as [fd](https://github.com/sharkdp/fd/issues/849)) may not want the special...

- [x] Add a Rust project - [x] Implement Alignment - [ ] Implement BiString - [ ] Implement slices - [x] Add a README - [ ] Benchmarks -...

If you have an idea what's going wrong, I'm happy to help debug/fix this: ``` $ ./tools/gen_sdk_package_p7zip.sh ~/Downloads/Xcode_7.3.dmg 7-Zip [64] 9.38 beta Copyright (c) 1999-2014 Igor Pavlov 2015-01-03 p7zip Version...

- [ ] `ln=target` should color symlinks like their target #11 was closed as wontfix, but this might be possible now after #45. - [ ] `ca` (regular file with...

```console $ find ~ -print0 | ./target/debug/xargs -0 echo >/dev/null Error: Command could not be run: Argument list too long (os error 7) ``` From a quick look, there's at...