Bruce Weirdan

Results 291 comments of Bruce Weirdan

> Not sure what the difference is. It looks like that for records it searches in *values only*, but *highlights everywhere* (including key names). @fdncred try setting an env variable...

`n` and `p` works for tables (like `ls` output), but not for records. > but strange and broken. Definitely.

`p` is not mentioned in explore's internal help. Perhaps it was removed?

One workaround that works today is to add `| update web_url { ansi link }`

You probably want ```console $ phpactor class:inflect \ src/AppBundle/Infrastructure/Aws/AwsClient.php \ src/AppBundle/Infrastructure/Aws/AwsClientInterface2.php \ interface \ -vvv ``` (note the third parameter, 'interface')

Even adding a default value does not help: ``` nushell def "from aaa" [ --test = false ] { print ($test | describe); if $test { "yes" } else {...

Point 3 is dangerous as there's no guarantee how the command would interpret those arguments. For example, `du -h` does *not* output help. Point 2 is already done.

Ah, I see. `std help` does have a fallback to `man`, while core help doesn't seem to have it. You can try adding `use std help` somewhere in your `config.nu`...

@fdncred I guess the question now is whether the current `std help` will be the base for the new help system once the new parser is ready. If it is,...

There's `std iter scan` that does exactly this: ```console $ use std $ [1 2 3 4 5] | std iter scan --noinit 0 {|x, y| $x + $y} ╭───┬────╮...