Prabir Shrestha
Prabir Shrestha
You should be seeing logs from here. https://github.com/prabirshrestha/vim-lsp/blob/69e6340c48571cc813c52d6acc2057b8aea6e742/autoload/lsp.vim#L408 search for `lsp#log` on the above file.
What if just have a echo that says make sure your distro has the libz3 library installed in order to extract clang. Another approach is something g like how unzip.exe...
For arch linux I had to use the following command. ``` sudo pacman -Sy libz3 ```
sent an example PR for rust-analyzer that works for linux/mac. Someone would need to add support for windows. https://github.com/mattn/vim-lsp-settings/pull/392
For npm install you can use this. https://stackoverflow.com/questions/29349684/how-can-i-specify-the-required-node-js-version-in-package-json
Typescript server provides more features besides just completion like goto-defintion, rename symbols and so on. With large project is makes sense to just have one typescript server running since they...
I had initially investigated on using vim-flow for [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim) but didn't use it since internally it is sync and uses `system` instead of `job` apis. Even though it is possible...
The trick to make the performance better is by being smart about caching instead of using min chars or changing the omni trigger patterns. I have implemented this trick for...
No plans to support multimonitor in C, but I have been working on and off on lua bindings which will support multi monitor apis. https://github.com/prabirshrestha/dwm-win32/blob/master/docs/api.md#display-mod ```lua local dwmdisplay = require...
I personally use only single monitor but multi monitor is something I have wanted to add. Lua bindings is working in progress and not ready for consumption. @nir9 if you...