Darren Schroeder
Darren Schroeder
> I might be misunderstanding your point, because nu -n prints the banner in all releases... oops, sorry for the misdirection. i'm easily confused. 😆 > In retrospect, I think...
This is what I'm seeing on Windows 11. ### Previous Run #### Windows 11 ```nushell > nu -n > $nu.startup-time 28ms 795µs 900ns > nu -n --no-std-lib > $nu.startup-time 7ms...
non-utf8 file names will probably be a problem since nushell only speaks utf-8 without the use of the decode command. if you want things to go faster, you should use...
If we change the `is_external()` function in byte_stream.rs to this it seems to work for this scenario. (removed the ByteStreamSource::File() in the matches!) ```nushell /// Source is a `Child` or...
easy enough to fix. should they both be with a line ending or without a line ending? from my experience, consistency is better, but this is kind of a no-win...
I think this is better https://github.com/nushell/nushell/pull/14158, but maybe not perfect yet.
That's weird. Thanks for the report.
I see it like this now ``` use std ... str contains - Assert that ($left | str contains $right) str contains - Checks if string input contains a substring....
I agree but we can't just change the name without allowing the command to be invoked with that new name. Maybe if we have an `*` after it or something...
These are the commands that are available without doing a `use std` in the repl. https://github.com/nushell/nushell/blob/b1cf0e258dc103f28b23190e495a2695bb0f9c97/crates/nu-std/src/lib.rs#L54-L67 You'll notice that `show` isn't in there but its alias `shells` is. ```nushell ❯...