mrjosh / helm-ls

⎈ Language server for Helm ⎈
MIT License
238 stars 15 forks source link

Missing DLLs on Windows #68

Closed fnuttens closed 7 months ago

fnuttens commented 7 months ago

The LSP needs the following at launch:

qvalentin commented 7 months ago

Hi, thanks for reporting this. Can you please elaborate how you can fix this or what a user needs to do when installing the lsp? Maybe open op a PR to the readme?

fnuttens commented 7 months ago

I guess a quick fix is for the user to copy the missing DLLs inside the bin folder, but I don’t have access to a Windows machine ATM so I can’t test for now.

A transparent solution for the user would be to add the DLLs as static libraries to your binary, but I have no idea how to do that in a Go project.

qvalentin commented 7 months ago

Seems like this was caused by using the yaml tree-sitter-parser, that uses a c++ scanner. The parser was not really used for anything so I removed it for now.