Danyel
Danyel
Thanks to harudagondi I've done a semi-short-sighted major change to my AST which holds no data and exclusively Spans/Ranges, not knowing that I was going to realize that I had...
Blanket impls like [these](https://github.com/zesterer/chumsky/blob/661390732dea2c88d6f19f5a3ccfcee1a13f157f/src/container.rs#L311) are very irritating because they get suggested by the IDE in completely unrelated places e.g. I was looking for a `contains` method on some container, and...
I see that `type Span = SimpleSpan` is hard-coded for the `impl Input for &str`. I don't think it's possible to opt-out of `SimpleSpan` and into, say, `std::range::Range`, without implementing...
**Describe the bug** When overwriting an object's value with undefined, it will leave the old value intact ```bash ❯ yq -n '.foo = "abc" | .foo = .bar' ``` **Actual...
I tried the following code: ```rust let mut manager = AudioManager::::new(AudioManagerSettings::default()).unwrap(); let data = StreamingSoundData::from_file("multichannel.flac").unwrap(); let mut handle = manager.play(data).unwrap(); loop { println!("{:?} -- {:?}", handle.state(), handle.pop_error()); std::thread::sleep(std::time::Duration::from_secs(1)); } ```...
Related to #1272 and #783 but not quite the same. In this specific case, when OpenVSX is not able to upload to the storage backend, the extension is still created...
This would be very useful, see #465 for more info
### Is there an existing issue for this? - [x] I have searched the existing issues ### Current Behavior When `cd`ing into a symlinked helm chart and running `helm-docs .`,...