Darren Schroeder

Results 2076 comments of Darren Schroeder

It's clearly known that this is not complete yet but I was trying it out and saw that it was puking on plugins so I wanted to add it to...

> maybe then we could combine `help commands` and `$nu.scope.commands` ... I'm not sold on this idea yet but one vote for it is that I'm betting startup would be...

We talked about this PR in our team meeting today. We'd like to move forward with this PR and like the direction it's going. Thanks for your help. I think...

@rgwood We also have another type called FlatShapes that are used in syntax highlighting in the repl. (see syntax_highlighting.rs). So, I wonder if all 3 of these are really necessary?

> what are examples of (2) ... I think there must be several commands that do this because I recall a `match` on `value` type in several places. One example...

I didn't really follow how `cell-paths` are a form of overloading either? I just see the traditional nushell concept where we have the same command name in several contexts like...

Thanks for explaining @dandavison. IMO, our cell-paths/column-paths need some help in regard to deeply nested data. As I'm sure you've experienced, updating things like a.b.c.d.e are way harder than they...

> I'm not sure what you mean, could you expand a bit? Here's one real-world example that came from Discord. https://github.com/nushell/nushell/issues/4834

if you look at `keybindings default` you will see that right is in an `until` with `historyhintcomplete`, `menuright` and `right`. you may be able to follow one of the other...

If I want to change the table theme, this is how I usually do it. ``` let-env config = ($env.config | upsert table_mode light) ``` You're right that we probably...