Darren Schroeder

Results 2076 comments of Darren Schroeder

Is this what you're talking about mimicking? https://docs.rs/clap/latest/clap/_derive/_tutorial/chapter_0/index.html We used to use clap for our nushell command line parsing but removed it because it was either too slow to compile...

You're welcome to work on it if you want but I can't promise that we'll accept the eventual PR. If it makes things overwhelmingly easier to use and understand, then...

I originally thought that they should both work like `ls foo*` works now, but now I'm not sure what "right" is. Seems like if you wanted to list what was...

I think part of the problem was that your text had a mix of tabs and spaces, so I normalized the data and used the `--guess` algorithm. ``` ❯ open...

We use uutils/coreutils for our `cp` command so you may want to see if it works for you. If it does, it means we have a bug in nushell. If...

It looks like `reflink_mode` support may need to be changed. https://github.com/nushell/nushell/blob/1f4131532ddedb95311391c6d4b1e80e1f433cac/crates/nu-command/src/filesystem/ucp.rs#L139-L146 Not sure if the OS you're looking for is in this list or not.

Sounds like someone needs to do some debugging to see exactly what's going on. It would also be good to ensure versions of nushell are the latest and the version...

Right, the `glob` command wants a string pattern, not a glob, and then it does its own globbing. The `glob` command uses a completely different globbing crate than anything else...

Yup, this is correct. We had to switch to a perUser msi installation versus a perMachine msi installation. It's not a bug but it's intended to run this way now.

Ya, it was a mess. We didn't have plans to do this but when winget-pkgs kept failing on release day, we had to take drastic measures and just force it...