Roland Fredenhagen
Roland Fredenhagen
My Idea is to use something similar to `thiserror` where you specify a format string that get's filled with the fields: ```rs #[derive(Error, Debug)] pub enum DocumentError { #[error("Invalid {0}:...
This is related to e.g. #67, but for the simple usecase of just wanting to ignore one or two arguments, something like ```rs #[cached] fn hello(a: usize, #[cached(skip)] b: String)...
This would be cross-editor compatible and even be a preliminary solution for #1 with https://marketplace.visualstudio.com/items?itemName=Matts966.efm-langserver-vscode. [`null-ls` appears to be discontinued](https://github.com/jose-elias-alvarez/null-ls.nvim/issues/1621)
Please follow this template, if applicable. ## Description Fixes `?.` for empty strings ## Usage {""?.test == "null"} ## Additional Notes TBD: should a json string i.e. `'""'` be considered...
Fixes #622 Please follow this template, if applicable. ## Description Adds `range_select` function. PoC. ## Usage When adding a widget or anything else that affects the configuration, please provide a...
I'm not sure what the right syntax is here. I have a struct containing a `&mut String`, and want to derive `AsMut`. The manual implementation is: ```rs impl AsMut for...
Nested block comments break the highlighting:  I ran ```rs let _: ron::Value = ron::from_str(r#" Something( /* /* test */ */ a: b ) "#).unwrap(); ``` To verify, ron supports...
### Checklist - [X] I have used the search function for [**OPEN**](https://github.com/AntennaPod/AntennaPod/issues) issues to see if someone else has already submitted the same bug report. - [X] I have **also**...
The executable run is the `cushy` `theme` example. ``` PS C:\Users\ModProg\Downloads> .\theme.exe thread '' panicked at /home/modprog/.cargo/git/checkouts/kludgine-da36743fea3cc9cc/3ee472a/src/app.rs:898:10: called `Option::unwrap()` on a `None` value note: run with `RUST_BACKTRACE=1` environment variable to...
I was unable to find a way to save the config after changing it via a hotkey outside of the settingsmenu To make it save I used ```java (ConfigManager) AutoConfig.getConfigHolder(ModConfig.class).save();...