Jonas Fierlings
Jonas Fierlings
My point was that the default behaviour for `complete` is to group stdout and stderr as you describe ```console $ run-external nu "-c" "print STDOUT1; print -e STDERR1; print STDOUT2;...
I don't mind closing #1122 in favor of this PR.
I have submitted https://github.com/NixOS/nixpkgs/pull/305037
Fixed by #14399.
I believe this is related to https://github.com/VSCodium/vscodium/issues/2049. If you look at `/local/home/user/.vscodium-server/.e3ecc7b1f165b02bbce073afbe9ab016559e91cb.log`, and you see the following error message you can use the workaround described in the above issue. ```console...
Ah, it seems you are right about only `Q` and `E` being supported. I remember trying `@K` as well, but it seems it did not error because I tried it...
The issue is not that my machine does not support ARM (I can `docker buildx bake other` fine), just that `other` cannot be used as the reference. That is, if...
Yes, the snippet you link works. The issue is that I want to build two separate targets, one of which supports more platforms than the other 😅 . I think...
There is one more clippy lint that is reported on nightly: [`missing_transmute_annotations`](https://rust-lang.github.io/rust-clippy/master/index.html#/missing_transmute_annotations), specifically for https://github.com/simd-lite/simd-json/blob/83a806f82155ed177807fa0af3e597737cd71a2d/src/macros.rs#L1253-L1259 I am not sure if you want to just ignore the lint here or not,...
```console $ cargo +nightly config -Z unstable-options get doc.browser = ["lemonade", "open"] registries.kellnr.index = "sparse+http://kellnr.internal/api/v1/crates/" # The following environment variables may affect the loaded values. # CARGO_HOME=/home/pigeonf/.local/share/cargo ``` So nothing...