pickx
pickx
many types (for example: `Position` and `Range`) don't derive `Hash`. this makes it hard to use these types if a `HashMap` is needed, without using intermediate types. is there a...
so this is a cool feature (thank you for implementing this, and of course everyone involved in maintaining this extension) that said, coming from my Rust + `rust-analyzer` setup with...
as discussed outside github.
```rust #[bitsize(1)] #[derive(FromBits)] enum A { C, D, } #[bitsize(2)] #[derive(FromBits)] struct Foo { a: [A; 2], } ``` ``` error[E0508]: cannot move out of type `[A; 2]`, a non-copy...
if macro input is invalid, we go straight to `unreachable`, so something like this ```rust #[bitsize(5)] union A { B, } ``` would panic with "entered unreachable code: should have...
one thing I found surprising while working with `toml_edit` after using `toml`, is that `Item` doesn't implement `From`, in contrast with `toml::Value` which does have equivalent `From` implementations. this makes...
**Describe the bug** several times a day, the extensions page downloads an update for the official Python extension (`ms-python.python`). this is the same version I already have installed, and no...
with Microsoft increasingly going in the direction of neutering newer versions of their bundled extensions in VSCode forks (for example, see: #1622, #2300), many users are going to stay on...
the URL bar search integration in Firefox has always been a little cumbersome (due to Firefox limitations?), however the omnibox-like search bar in the extension page is imho a better...
### Describe the bug when attempting to `save` to a directory that doesn't exist, the entire path is highlighted and an error message is emitted about the file not existing....