Jakub Žádník

Results 277 comments of Jakub Žádník

I'm getting the same `Option::unwrap()` error. It points to this line: https://github.com/iai-callgrind/iai-callgrind/blob/ee03331b0aefac311b1e409322495de3a450cd2c/iai-callgrind-runner/src/runner/mod.rs#L115 Apart from that, I would support adding this since it's just an additional benchmark dataset, it doesn't replace...

So before landing this PR, we need to patch reedline as per @sholderbach 's [comment](https://github.com/nushell/nushell/issues/12951#issuecomment-2131284556) to ensure that it reads the correct cwd. I guess it could get a separate...

There is nothing special in Nushell about completions, they're just definitions that you can add to modules like any other definitions. There is no need to special-case completions. So, the...

Following discussion from https://github.com/nushell/nushell/pull/11395. As pointed out by @jcgruenhage, apparently it is difficult to ensure that Nushell is spawned with some environment variable. (Note that Nushell inherits the environment from...

OK, thanks, TIL. The `$nu.vendor` record could be used for build-time package modifications in general to encapsulate them into one place, if there ever is a need to add something...

Yes, you can close it, and whoever decides to implement it (once we greenlight it), please tag @jcgruenhage to ensure the approach works for package maintainers.

Oh yeah, one thing I forgot to mention: You can set the `log_level` setting in the config. If you set it to `trace`, you'll get a lot of trace info....

We now have a [Debugger trait](https://github.com/kubouch/nushell/blob/main/crates/nu-protocol/src/debugger/debugger_trait.rs) which can be used to implement custom debuggers (an example is the `debug profile` command). At some point, we want to allow implementing custom...

You should be able to capture stdout from an external process via `leave_element()` of the Debugger trait which takes the `result` parameter. It's not possible to capture Nushell's own stdout...

It is quite hard to understand what the PR is trying to achieve. Having some examples of the desired functionality and more general description would help. I have never heard...