Václav Kubernát
Václav Kubernát
Hi, this is the output, if I add ```lua local minIndex = -1 while arg[minIndex] do minIndex = minIndex - 1 end for i = minIndex+1, #arg do print(i, arg[i])...
>And if you execute /usr/lib/lua-language-server/bin/lua-language-server --check=., There is definitely a need for some sort of a wrapper, otherwise I do get a few errors: ``` $ /usr/lib/lua-language-server/bin/lua-language-server --check=. create_directories: "/usr/lib/lua-language-server/meta/Lua...
As far as I can tell, there's no reason to run `lua-language-server` with the `-E` flag (or at least there is none documented [here](https://luals.github.io/wiki/usage/)), so I opened up an issue...
Hello, is there any chance the lazy parser gets implemented? My use-case is parsing strings, which I get dynamically from a class I inject via the `x3::with` directive. Here is...
@Kojoley I was able to change `lazy` to work a little bit differently: it constructs an object of type `ParserCreator` (the template argument) and then calls its `operator()` with the...
Thank you, I will try that.