Goz3rr / vscode-glualint

glualint for vscode
https://marketplace.visualstudio.com/items?itemName=goz3rr.vscode-glualint
MIT License
7 stars 4 forks source link

Cannot find glualint when using SSH #7

Closed TheOnly8Z closed 3 years ago

TheOnly8Z commented 3 years ago

I am connecting to a windows 10 server using VS Code's SSH plugin. Despite the PATH environment being set and reloading the window, the plugin still cannot find glualint.exe. image image image

Goz3rr commented 3 years ago

Please try checking using the terminal inside vscode (can be opened with ctrl+` or View -> Terminal), if the PATH is correctly set there, and if you can execute the glualint command. The glualint executable has to be available on the same machine as where vcsode is running. I've sometimes seen some strange cases where vscode does not update the PATH at all for some reason, a reboot might help as well.

If that fails, you can also try changing the glualint.linter setting from glualint to E:/glualint/glualint.exe in your case, then it shouldn't matter what the PATH is set to.

TheOnly8Z commented 3 years ago

Changing the linter setting solved this issue, thanks.