0x776a
0x776a
- `TryVisit`: fallible version of `Visit` - `TryGet`: fallible version of `Get` - `Take` and `TryTake`: handy methods to simultaneously `Get`/`TryGet` and `Del` a `Value` from an object
This PR works with #217 to implement what's being discussed in #216 Target features : - [ ] Generate relevant data-structures from `preset` - [x] Read user overrides - [x]...
This would allow to install via `cargo install neovide`
The following examples: ```go package main import ( "fmt" "github.com/alecthomas/kong" ) func main() { var cli1 struct { Module struct { ConfigFile kong.ConfigFlag Val1 int Val2 int } `embed:"" prefix:"module."`...
Related: - #2443 - #1426 After playing around with `shellcheck`, I think it's not the way to go mostly because of the path separator between linux and windows (\ vs...
any reason why we can't write something like ? ```rust #[derive(Deserialize)] #[serde(untagged)] struct Foo { Bar(Bar), ... #[serde(other)] Fallback, // literally nobody cares about what data the user tried to...
### Is your feature request related to a problem? Please describe Currently the keymap is read once at init and is used for the entire lifetime of Penrose. For alternative...
I have a use case where I need to do that with the 3d components zeroed. Is there a way to do it (other than by hand ?) Edit: By...
Hi, I want to calculate the orientation of a `Vector2`. The sign of the angle matters, but `vector2.angle(Vector::x())` doesn't seem to keep that information. example: ```rust // assertion fails assert_eq!(...
Currently whenever we leave the TUI, music stops playing. It would be better if music kept playing in the background. Is such a feature in the roadmap ?