Skip to content
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

Neovim 0.10+ fix #206

Open
alessio-perugini opened this issue Mar 19, 2025 · 0 comments
Open

Neovim 0.10+ fix #206

alessio-perugini opened this issue Mar 19, 2025 · 0 comments

Comments

@alessio-perugini
Copy link
Contributor

First of all, thank you all for being so patient and kind in providing triage and possible fixes.
Special thanks to @leoverde2, @mike-lloyd03 for the fix, and also @speelbarrow for providing a usable branch/fork.

We have released the 0.7.7 that contains the fix. It is now possible to use it with nvim 0.10+.

Remember that the current LSP implementation doesn't support all the features and you must ensure that you're not passing additional capabilities to your nvim config.

Example:

require("lspconfig")["arduino_language_server"].setup({
	cmd = {
		vim.fn.expand("~/.local/share/nvim/mason/bin/arduino-language-server"),
		"-clangd",
		"clangd",
		"-cli",
		"/usr/bin/arduino-cli",
		"-cli-config",
		vim.fn.expand("~/.arduino15/arduino-cli.yaml"),
		"-fqbn",
		"arduini:avr:uno",
	},
	-- capabilities = capabilities, <-- DO NOT specify that
})

Hopefully, when we have more bandwidth we will release an update to https://github.com/bugst/go-lsp to support more capabilities, thus avoiding crashes.

Thank you again and apologies for the huge delay 🙏

@alessio-perugini alessio-perugini pinned this issue Mar 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant