Rain

Results 514 comments of Rain

Hmmm, symlinks really weren't a thing on Windows when I wrote this in 2012, so this doesn't support them. I'd be happy to take a PR with tests though!

> And please remove the rustfmt changes so that this PR only contains the changes for the behavior change Would you be open at all to formatting the code via...

I think it would be cool to have a way of declaring in your binstall metadata that the musl target is statically linked. (I guess also the minimum glibc version...

Auto-detection is definitely part of the story, but each filesystem has its own case-folding and normalization rules on top (and the normalization rules apply even on some case-sensitive filesystems). For...

> I guess those case-sensitive file-systems will have the same problem - if walking the fs provides paths which aren't identical to the original tree, jj will get confused about...

Here's one from me: I've spent many years of my career working on version control. What I like most about Jujutsu is how it has non-obvious solutions to UX problems...

The changes work for me! Always appreciate a good copy-edit.

I'd been wondering about the plans here. This seems related to the classic issue where it's hard to make changes to git's backend because not only do you have to...

Going to be using `feed` in the rest of this comment to reduce the scope of the problem (`send` is built on top of `feed` and has all the issues...

@taiki-e I have an implementation working: ```rust pub trait SinkExt: Sink { fn reserve(&mut self) -> Reserve where Self: Unpin, { /* ... */ } } ``` `Reserve` and `FlushReserve`...