Darren Schroeder
Darren Schroeder
yup, it's hit and miss on platforms and terminals. also, if we decide to add it, it needs to be added to the rust code as a default, so you...
I wonder if this could be a bug with `join` too because this doesn't return anything. ```nushell $table | join [["island name"]; [boiler]] "island name" ``` It is interesting that...
hmmm, interesting. I forgot about --ide-ast. I wonder what the IR says. ```nushell ❯ view ir { $table | join [["island name"]; [boiler]] "island name" } # 4 registers, 13...
It would be great to have some steps to reproduce this behavior so we can look into it further.
This is probably because you haven't added those paths to your env.nu in nushell's $env.PATH variable.
Have you looked at the documentation? https://www.nushell.sh/book/configuration.html#path-configuration
I'm sure the Chinese version is not nearly as updated as the English.
I'm confused. Why would we start an interactive shell to run commands? The shell would just be lingering and never close.
Even without the cell-path literal syntax it should work. Like this ```nushell ls | select name.0 ``` but it doesn't. Seems like it used to.
I'd probably support adding something like this to `format duration` but we just removed a bunch of conversion stuff from `into duration` and put it there. I'd also probably support...