Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.2k
Refactor internal shape and reduce reliance on Kurbo#617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
78eac6345df72eb7c6eea6f94608bdae5408f62035a849ffa77d9d74fd1d9b8d6d3781a1425dcf3af2b3a27feea9e251376889240bac2a306155c0425cd0127a1fa4cabbaf570d87f8198ee96bb98a322d8fad3eacfa16aebd9ddfe4144f71db68a62f35bb2ba819181fd964c8a795a9398ec489dbcbedc061efd627502294767e4f287aadc5d37c8864a62a4ffb64fb7f3306bb6897b85b71ef043df47cdfcf289de7a7e05bce4d67bdbe3150185e10c3fd15508c16ad4a8af66b7144e5ec8719063745e28f564dc3171b1996f7d9b171365f07336a726758ecafb178b31e21010f5179b7d732b7aead57c41bc8659c5c40fec48990b9341ebbed1373a42134d156d38019b6910fbdd391fcbf074f4ee8b87849aabba02414260c8dcfc81bbc4a084cff3c853647cc32ab6275b61e96ce92a096a5eca33ace9db55d252af80b0796ea683e3a029560155d7e06600d306b8c3efbbaa36abf81c4ff72394f090df1ecdd0c6308a5f93ad37e94e3fbcc4159a43f0bf1b678d383a7c7b6973e063395File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -103,9 +103,11 @@ impl Default for Mapping { | ||
| // Path | ||
| entry! {action=PathToolMessage::DragStart { add_to_selection: KeyShift }, key_down=Lmb}, | ||
| entry! {action=PathToolMessage::PointerMove { alt_mirror_angle: KeyAlt, shift_mirror_distance: KeyShift }, message=InputMapperMessage::PointerMove}, | ||
| entry! {action=PathToolMessage::Delete, key_down=KeyDelete}, | ||
0HyperCube marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| entry! {action=PathToolMessage::Delete, key_down=KeyBackspace}, | ||
| entry! {action=PathToolMessage::DragStop, key_up=Lmb}, | ||
| // Pen | ||
| entry! {action=PenToolMessage::PointerMove, message=InputMapperMessage::PointerMove}, | ||
| entry! {action=PenToolMessage::PointerMove { snap_angle: KeyControl, break_handle: KeyShift }, message=InputMapperMessage::PointerMove}, | ||
| entry! {action=PenToolMessage::DragStart, key_down=Lmb}, | ||
| entry! {action=PenToolMessage::DragStop, key_up=Lmb}, | ||
| entry! {action=PenToolMessage::Confirm, key_down=Rmb}, | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this not default? https://rust-analyzer.github.io/manual.html#rust-analyzer.procMacro.attributes.enable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I believe so. Remove if preferred.