-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
feat: add fennel-ls support #2247
Conversation
does this server not support windows? |
I guess it's possible, but I haven't tried it yet. |
Co-authored-by: Raphael <glephunter@gmail.com>
Co-authored-by: Raphael <glephunter@gmail.com>
Co-authored-by: Raphael <glephunter@gmail.com>
Co-authored-by: Raphael <glephunter@gmail.com>
so we can simply add the server cmd in windows. if it not works fine we can fix it according the error message local cmd = 'fennel-ls'
if vim.fn.has('win32') then
cmd = { 'cmd.exe', '/C', 'fennel-ls'}
end
|
I have tried in wsl2, but it's not work. |
hmmm okay then just need fix the commit message. |
ok |
The code in server_configurations.md is wrong. require'lspconfig'.fennel-ls.setup{} -- wrong
require'lspconfig'['fennel-ls'].setup{} -- fixed |
Untested on windows.