Darren Schroeder

Results 2076 comments of Darren Schroeder

i don't think sh nor bash have > 400 internal commands. that's probably the biggest difference. you could try changing the optimization setting to optimize for size and recompiling. you...

I'm sure there are. You'll just have to play around.

Some time ago we did some crateification work. This is how we broke it down. ### nu-cmd-lang https://github.com/nushell/nushell/blob/e690e7aac03f80394a444606a45da3bb8ae90dd0/crates/nu-cmd-lang/src/default_context.rs#L17-L64 ### nu-cmd-cli https://github.com/nushell/nushell/blob/e690e7aac03f80394a444606a45da3bb8ae90dd0/crates/nu-cli/src/commands/default_context.rs#L14-L26 ### nu-cmd-extra https://github.com/nushell/nushell/blob/e690e7aac03f80394a444606a45da3bb8ae90dd0/crates/nu-cmd-extra/src/extra/mod.rs#L31-L91 I think that leaves `nu-cmd-plugin` for...

Following this site, https://github.com/johnthagen/min-sized-rust, you can change the Cargo.toml by updating the release build profile. ```toml [profile.release] opt-level = "z" strip = true lto = true codegen-units = 1 panic...

ugh, we kicked clap to the curb long ago because it was a huge dependency and slow to compile. guess we need to keep it now.

@zhiburt Would you mind looking into this? I thought we fixed this but maybe that was just wrapping and not wrapping urls?

@babicold Please keep your comments on topic.

Different crates do different things. However, different quotes in nushell also do different things. For instance, double quotes means interpret escapes where single quotes do not interpret escapes. So, double...

I think this is cool and an interesting way to abstract the colors into a theme, but I worry about existing users as mentioned above. Also the "theme" name should...

Maybe ReedlineTheme. I'm just thinking that everyone calls their theme things "Theme". When we're in nushell, I don't want to be confused about which theme we're talking about.