unrealhoang

Results 9 comments of unrealhoang

First, thank you for your effort of creating this project. I've also been discovering neovim rpc in Rust and `neovim-lib` was not satisfying enough. For > Rewrite the API to...

@mehcode In your example, if `q2.await?` is called before `q1.await?`, you have to either allocate to store the result of q1 or skip/ignore the response of q1 in the response...

> Hmm, I don't think it's a per-file thing. Once the first goto definition completes, subsequent goto definition requests complete almost instantly, as long as they are within the same...

@BurntSushi from your config, I can see that ALE does not start language server when you open a file, as `let g:ale_lint_on_enter = 0`. Also, I just found from ALE's...

As I understand, in the current API: ``` let (send, recv) = multiqueue::broadcast_queue(4); for i in 0..2 { // or n let cur_recv = recv.add_stream(); thread::spawn(move || { for val...

Thank you for the contribution, can you sign the CLA.

also this will result in data race issue if multiple `faker.CCType()` being called for the first time in parallel

also currently there's no way to set row value to null, `SetRowValue[*int64](row, colIdx, nil)` will raise a `cast error: cannot cast *int64 to int64`, and returning error to `FillRow` callback...