Denis Kolodin
Denis Kolodin
@SpaceManiac I mean to use [`alloc`](https://doc.rust-lang.org/alloc/) feature which wraps RFC's generics. I've pushed my idea with #52 how I made it. What about your version?
I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to chose either at their option.
Is there still no official git repo of lua? We could use it as a submodule.
`&mut self` not required for `is_*`, most `to_*`, `check_*`, and `opt_*` functions, and some others.
This somewhat limits. Internally all of `is_` methods calls: ``` LUA_API int lua_type (lua_State *L, int idx) { StkId o = index2addr(L, idx); return (isvalid(o) ? ttnov(o) : LUA_TNONE); }...
Do you want to have a capability to activate the following options: `enableBasicAutocompletion`, `enableSnippets`, `enableLiveAutocompletion`, right?
I've released `2.2.0` version with the options above and extensions (look to the example). Check it, please.
You use custom code completion feature. I need to think how to implement it with Elm.
Resonable. I will take this into account in the implementation.
I have the same problem. Build success, but lib fails on tests (or when I use items from lib in code): https://gist.github.com/DenisKolodin/f45760e6d1883fda0652 I've gist cargo test log with verbose flag....