Markus Westerlind
Markus Westerlind
The examples in the crate and the rust docs are up to date and there is a short "tutorial" in https://docs.rs/combine/latest/combine/index.html . The pages on the wiki are still mostly...
Link to start of discussion https://gitter.im/lalrpop/Lobby?at=5adf176c62316e0505f41459
Usually I believe handling the indentation is handled in the lexing stage where indentation gets transformed into `BLOCK_START` and `BLOCK_END` tokens which are then parsed much as you would non-indentation...
Quoting myself > I think LALRPOP miscompiles the regex and \\+-\\* ends up being a range between + and *. > > Using plain regex rejects it but LALRPOP does...
A simple way could be to do this ```toml [[bin]] name = "lalrpop" required-features = ["cli"] [dependencies] docopt = { optional = true } [features] default = ["cli"] cli =...
Yes, because `url::Url` does the wrong thing in some cases we did need to replace it with something. I haven't seen any better candidates than the `fluent_uri` crate so that...
> We lacks the conversion method between lsp_types::Uri and fluent_uri::Uri (and also the popular url::Url), making lsp_types::Uri a standalone type which can only be constructed by parsing a literal string...
Released as 0.96. Sorry for losing track of this.