Evgeniy Dushistov
Evgeniy Dushistov
**Describe the bug** I have type like this: ``` struct Foo { default_idx: Option, list: Vec, //many other fields } ``` I want generate `PartialEq` in such way that: ```...
At now, if you have `json` data in `std::vector`, `QByteArray` (from `Qt`) or `const char *`, then to parse `json` with `json11` you need to do unnecessary memory allocation to...
`::` can not be used in javacript names, so in qml should be used `Future.` instead of `QuickFuture::Future.`. But for such code qmllint reports: Warning: unqualified access at Future.onFinished ^^^^^^
It would be to have option with name like `clang-format-enable-format-on-save`, that use can enable and code in buffer will reformatted during saving on disk process.
### Thank you for the bug report - [X] I am using the latest version of `lsp-mode` related packages. - [X] I checked [FAQ](https://emacs-lsp.github.io/lsp-mode/page/faq/) and [Troubleshooting](https://emacs-lsp.github.io/lsp-mode/page/troubleshooting/) sections - [X] You...
**rust-analyzer version**: (eg. output of "rust-analyzer: Show RA Version" command, accessible in VSCode via Ctrl/⌘+Shift+P) rust-analyzer 0.0.0 (9463d9eea4 2024-06-28) **rustc version**: (eg. output of `rustc -V`) rustc 1.80.0-beta.4 (64a1fe671 2024-06-21)...
It would be nice to have functionality in aster to generate things like ``` let i = 1_u32;//possible let j = i as u64;//not possible at current version ```
It would be nice to mark `Parser::parse_fn_decl_with_self` as `pub`, because of in my code: https://github.com/Dushistov/rust_siwg/blob/master/src/lib.rs to use it I have to use copy/paste technique, what is sad.