Kirill Merkushev

Results 87 comments of Kirill Merkushev

should be notice, not deprecation

This will be never merged it current state, because of it provides only one case of filtering push (there is same for branches, committers, titles). But it still open because...

What about gradle? :D Gradle is a pretty flexible thing and can embedd some code to pull everything we need before the build

Can't see why your variant better than original

lib already has `.wordChar().nonWordChar().space().nonSpace().digit().nonDigit()` use with `.capture().endCapture()` - is it solve your case?

`regex().add("[").wordChar().space().digit().add("]").oneOrMore()` `regex().anyOf("\\w\\s\\d")` `regex().capture().digit().or("\\w").or("\\s").endCapture().oneOrMore()` `regex().add("[a-k\s\d,]+")` You can use raw regex if it looks more compact

In some cases it's true! VE is mostly for those who don't know how to type simple regex. Or where you should write something that should be human-readable (for example...

can you provide complete example on how it should work?

I think implementing of current behaviour can be done in this pr

PRs are welcome!