Vladislav Mamon

Results 11 comments of Vladislav Mamon

Faced this issue as well. The absence of these blocks in locale file leads to displaying descriptions like on the screenshot. ![image](https://user-images.githubusercontent.com/9627331/72425082-e4bf5800-37a8-11ea-9dc7-8cda6fd78646.png) For now, I'm adding these blocks into our...

I thought the problem was in my ISP (as in Russia ISPs massively ban whole subnets), tried a whole bunch of VPNs, but still API doesn't seem to work via...

> Here we complete the constant `a`, not the local variable. I'm so used to naming constants using uppercase that didn't even think about a case like that! It'd nice...

Done. Rolled back changes made in `CompletionContext` and moved them to `format_string`, so PR is less invasive now.

> let me know if you'd like me to correct the documentation and/or try the minor optimization/simplification with `includes` in the `string` parser. Yeah, I know that you can pass...

Hey, thanks for the feedback and suggestions! I've already started working on lookahead/backtracking combinators and playing around with non-consuming parsers in general, so your use cases and thoughts will be...

I took a glance at your examples and can tell you right away what the problem is: the missing `g` flag in regular expressions. This "caveat" is [mentioned in the...

Returning to the first part of the issue... 1. ~~I believe the `context` combinator you suggested will be essentially `attempt(takeMid(before, target, after))` or `lookahead(takeMid(before, target, after))`. Both will be rip-offs...

Hm-m, that could work, thanks for the idea! I'll have to add names or some other identification means for parsers and combinators, but I'll need to add it anyway for...