Tulio Brunoro

Results 11 comments of Tulio Brunoro

I don't like this approach since other clients do this automatically. I'll poke around after work to see what I can get, but I remember an issue on the language...

Alright I landed on something. ``` lua local languageServerPath = vim.fn.stdpath("config").."/languageserver" local cmd = {"ngserver", "--stdio", "--tsProbeLocations", languageServerPath , "--ngProbeLocations", languageServerPath} local file = io.open(vim.fn.getcwd()..'/node_modules/@angular/core/package.json', 'r') if file then local...

> iirc this is also what the VSCode extension does, and I think it's the only correct approach. I can't assume what specific version of typescript (or angular) a project...

Salve. Actually I changed this [file](https://github.com/kabouzeid/nvim-lspinstall/blob/main/lua/lspinstall/servers/angular.lua). But if you want to get it working, just do something like [this](https://github.com/mactep/dotfiles/blob/5a28d4b4e333e61586283ea93f304a85c9f79be4/.config/nvim/lua/plugins_config/lsp.lua#L58-L68). Just change `languageServerPath` to the directory you installed `@angular/language-service` and `typescript`.

I'm pretty sure that this could be achieved by doing http requests. I suggest you to use node-steamcommunity as a guideline. I implemented some features from there, but I haven't...

NVIM v0.9.0-dev-155+g771824128 Same thing happens

After some digging, I found out that the problem was introduced with the commit c34d72bf7cc149db7b17ef57f2c961b54cd46ff7. Also, neovim version v0.8.0-dev-712-g4c3104819 is working but slow. I'll try my best to debug those...

Related to #3611. Also, I've been trying to gather some information regarding this behaviour and I noticed that the `raw_iter` method inside `query:iter_captures` only returns a match for the first...

#27 should handle this more gracefully, let me know how it goes for you

> I'm not sure at all how doable this is, but wouldn't it be just like switching buffer without having a vsplit opened, in that case? Pretty much it. >...