Jakub Žádník
Jakub Žádník
Here is the virtualenv update: https://github.com/pypa/virtualenv/pull/2506
You can also do just `if "VAR" in $env`
I think being able to discern between known and unknown externals is useful. If you want them to look the same, maybe you can update the color config to show...
Ah, I see, sorry. Then, maybe being able to differentiate between those could be considered. Same for aliases, which are also internal commands from Nushell's point of view. This could...
@sophiajt Before I move forward with this, could you take a look if the proposed approach looks promising? It obviously needs cleanup and finishing, but I just want a general...
New version. I moved the Debugger to the Stack and DebugContext to be a type parameter of the `eval_xxx()` functions. This leaves a cleaner and more explicit API and removes...
It's almost ready, I just wanted to make the profiler a bit more useful.
I might have missed that, it's not intentional.
To me, wrapping _every single_ command into `catch_unwind()` seems quite invasive because we're inserting it into the hot path of the evaluator for _every single_ command that we run. What...
As mentioned by @WindSoilder, the crate we used for the colorful backtraces was [colow_backtrace](https://docs.rs/color-backtrace/latest/color_backtrace). The idea is, instead of wrapping command calls, can we wrap the entire Nushell REPL into...