Prabir Shrestha

Results 267 comments of Prabir Shrestha

@hrsh7th probably want to make this change at https://github.com/hrsh7th/vim-vital-vs first?

New semantic highlighting does use `prop_add_list()`. Please give it a try at https://github.com/prabirshrestha/vim-lsp/pull/1275. Diagnostics needs to be updated.

There are different ways to solve this. ```vim function! s:log(...) abort echom json_encode(a:000) endfunction call callbag#pipe( \ callbag#fromList([1, 2, 3]), \ callbag#scan({acc, curr -> add(acc, curr)}, []), \ callbag#tap({x->s:log('scan tap',...

Wondering if there is a bug with async ones. In the mean can you try using `scan` and make it behave similar to `reduce`. ```vim function! s:log(...) abort echom json_encode(a:000)...

You can also use `group` which is going to be simpler. ```vim function! s:log(...) abort echom json_encode(a:000) endfunction let s:seed = srand() let s:inputArray = [1,2,3,4] call callbag#pipe( \ callbag#fromList(s:inputArray),...

Appreciate the work gitpod is doing for the open source world. https://opencollective.com/vim-lsp would be the best place to transfer funds too.

@mattn good catch. The link is fixed. Apparently I can’t spell my own name 😃.

This is currently expected since if the feature is disabled we don't even want to listen for the events. This is useful since vimscript is slow so small optimizations like...

Can you past a screenshot of how the output looks like? I have been thinking about use `:CheckHealth` as an addition to verbose `:LspStatus` as `CheckHealth` is bundled with neovim...