diff options
| author | Sindre Moen <sindrenm@gmail.com> | 2026-04-30 02:45:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-29 20:45:45 -0400 |
| commit | fbe09db68020a1da4e1a598ea3235bd8bb544f77 (patch) | |
| tree | caa5df86e139936a707f158a513f217f32a83702 | |
| parent | docs: update generated annotations (diff) | |
| download | nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.tar nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.tar.gz nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.tar.bz2 nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.tar.lz nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.tar.xz nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.tar.zst nvim-lspconfig-fbe09db68020a1da4e1a598ea3235bd8bb544f77.zip | |
fix(kotlin_lsp): update cmd to `intellij-server` #4412
per https://github.com/Kotlin/kotlin-lsp/commit/75ddb7586e0170ed93912b0be5d67e0a45769ee6
, the new name of the launcher is `intellij-server`, not `kotlin-lsp`.
| -rw-r--r-- | lsp/kotlin_lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/kotlin_lsp.lua b/lsp/kotlin_lsp.lua index cd9e7722..be78426b 100644 --- a/lsp/kotlin_lsp.lua +++ b/lsp/kotlin_lsp.lua @@ -11,7 +11,7 @@ ---@type vim.lsp.Config return { filetypes = { 'kotlin' }, - cmd = { 'kotlin-lsp', '--stdio' }, + cmd = { 'intellij-server', '--stdio' }, root_markers = { 'settings.gradle', -- Gradle (multi-project) 'settings.gradle.kts', -- Gradle (multi-project) |
