Richard Carson
Richard Carson
I'm porting a project of mine to rust, and one of the features allows users to extend the functionality. Previously I used python for this, but want to move to...
Confirmed neither X11, nor Wayland work
Fixed in version 0.20.0
I hope this isn't out of order but I maintain rustyscript, a similar crate that currently uses the latest version of the deno core. It might be an option for...
> @rscarson How did you get the ops working in latest deno_core? (Assuming you use the same mechanism as js-sandbox) 🙂 Have you tried the op2 macro? You can see...
Do you get the same crash if you change the clipboard mode in settings to 'replace clipboard contents'?  You'd need to copy, press CTRL-Space then paste, but it would...
@yusefnapora I have updated enigo in the master branch; are you still having the same crash? If so please try switching the clipboard mode to 'replace clipboard contents' in the...
> What happened to your request to mention your crate? Did you delete the message? 🙂 I could do that; would probably batch it with the next changes (currently busy...
I had already rewritten it as `#[regex(r#""([^"\\]|\\.)*""#)]` with no luck but `#[regex(r#""([^"\\]+|\\.)*""#)]` did the trick! Thanks!