Results 1383 comments of Vincent Prouillet

I see, and I guess you will need to have the cluster to agree on a schema (I guess?) so you probably need to have special handling to wait till...

Hey @Dignifiedquire I just ran into that issue as well. Here's the repo https://github.com/Keats/react-example For some reasons, changing tests in one of the files in tests/reducers/ work but it serves...

That's very similar to one of my crate (https://github.com/Keats/validator) with a wip new version at https://github.com/Keats/validator/pull/27

It would be nice to have a hook like the one mentioned by @scottmcm. With [validator](https://github.com/Keats/validator), I could do something like ```rust #[derive(Debug, Validate, Deserialize)] #[serde(Finalize)] struct SignupData { #[validate(email)]...

Was some documentation added on that? Is it a big feature?

I made the PR, this happens pre-linking I think?

Ah damn I was about to try it in Zola and rust-onig still hasn't shipped a new version with optional bindgen :( @sharkdp how do you feel about creating a...

@robinst any chance you can release a new version of fancy-regex? I want to update some syntaxes and want to know exactly which ones are failing after your latest patches.

Thanks a lot @robinst , I'll give it a try asap

It looks like a lot of syntaxes are using `\G` (TypeScript like https://github.com/getzola/zola/blob/bc496e61010be1094a9192003ea59506c14d9397/sublime/syntaxes/TypeScript.sublime-syntax#L518) and `\g` (Elixir Regex https://github.com/princemaple/elixir-sublime-syntax/blob/master/Regular%20Expressions%20(Elixir).sublime-syntax#L52 and probably a few others). I had never heard of subexp calls...