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
As described in title, this happens on 2.8.0 via neovim.
Using a config recommended via slack for combatting this issue, to no avail. I additionally swapped out elm-test for elm-test-rs.
local function custom_attach(client) if client.config.flags then client.config.flags.allow_incremental_sync = true end end return { "neovim/nvim-lspconfig", opts = { servers = { elmls = { mason = false, rootPatterns = { "elm.json" }, init_options = { disableElmLSDiagnostics = false, elmReviewDiagnostics = "warning", elmPath = vim.fn.exepath("elm"), elmTestPath = vim.fn.exepath("elm-test-rs"), onlyUpdateDiagnosticsOnSave = true, rootPatterns = { "elm.json" }, skipInstallPackageConfirmation = false, trace = { server = "messages", }, }, }, }, setup = { elmls = function(_, opts) local default_config = require("lspconfig.configs.elmls").default_config local final_config = vim.tbl_deep_extend("force", default_config, opts, { on_attach = custom_attach }) require("lspconfig").elmls.setup(final_config) return true end, }, }, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As described in title, this happens on 2.8.0 via neovim.
Using a config recommended via slack for combatting this issue, to no avail. I additionally swapped out elm-test for elm-test-rs.
The text was updated successfully, but these errors were encountered: