We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since lua LSP has predictable platforms it builds to, you could do a conditional check and set the bin location
nlua.nvim/lua/nlua/lsp/nvim.lua
Line 7 in b24d838
if jit.os == 'osx' then local bin_location = 'macOS' elseif jit.os == 'linux' then --or what ever the value returned by linux local bin_location = 'Linux' ....
Just some ideas
The text was updated successfully, but these errors were encountered:
This is what I did to fix the command on Mac: https://gitlab.com/martini97/dot-nvim/-/commit/b6f627ce8ac9c2eeb303237afe3abbf8d9de4a20
Sorry, something went wrong.
This is what I do in my pr! Please note that the macOS jit.os value is in uppercase. Not "osx", but "OSX".
No branches or pull requests
Since lua LSP has predictable platforms it builds to, you could do a conditional check and set the bin location
nlua.nvim/lua/nlua/lsp/nvim.lua
Line 7 in b24d838
Just some ideas
The text was updated successfully, but these errors were encountered: