Darren Schroeder

Results 2077 comments of Darren Schroeder

I'm going to play with this a bit. Nice POC!

@kubouch Related to: 1. Seems reasonable. 2. Seems reasonable. I always wondered which one takes precedence. Now we won't have to wonder. 3. I'm looking forward to this fix when/if...

Have you tried out this yet to see if it helps? https://github.com/nushell/nushell/pull/8096

I looked at adding `list` etc, but couldn't figure it out. It'll take someone smarter with the parser than me.

I wrote this the other day in discord which passes a closure. ``` > def transform [fn: closure] { $in | transpose | update column0 {|r| $r.column0 | do $fn}...

We've talked about this for a while. We'd love to have this support.

I bet that's calling the operating systems `ls`. We do not have an `ls` that lists like that in nushell.

I'm not having any issues with `sudo ls` although I've noticed that it's not respecting my theme which makes me think it's launching another nushell on Windows, but that's just...

yup, if you don't have nushell as your login shell, the `sudo -s ls` won't work. It'll always run `ls` with your login shell. I really have no idea how...

This is by design. You can see it here. https://github.com/nushell/nushell/blob/1fd1a3a45642a128027b2e2184c8e156726539ce/crates/nu-command/src/debug/view_source.rs#L64 Although I think we'd like to have a smarter view source command. I haven't looked into to it, but my...