Darren Schroeder
Darren Schroeder
This looks like a bug in human-date-parse because of this part. I'm not sure why it's putting -0 at the front, maybe because 2024 - 3000 = -976? ```nushell '3000...
I get something similar using burntsushi's jiff crate in my nu_plugin_dt plugin. ```nushell ❯ dt now | dt add '-3000y' -000976-10-02T11:13:45.527877-05:00[-05:00] ``` Seems to work if you specify a format...
I'm not sure about renaming to main. Seems like someone could use this module and just call select-aws-profile and it work fine.
ya, i think that means that the file needs to be named different than the custom command.
I thought this PR enabled relative use https://github.com/nushell/nushell/pull/6150 `If one of the above is used inside a script with a relative filename as an argument, the path is assumed to...
env vars aren't const. also, semi colons are not required above.
I'm so pumped that you found a reliable repro for this!
The only real downside to this is you have to have a dependency on windows-sys (i think that's the crate terminal-size uses). But if you were including terminal-size, you'd have...
I just fought this issue with my nu_plugin_dbg and came up with this solution. ```rust #[cfg(not(windows))] fn termsize() -> usize { use std::os::fd::AsRawFd; // because STDOUT is redirected we need...
Seen it before. Experienced it. Don't like the current behavior at all. Would like to see a PR to fix it without introducing more resize artifacts.