From fbe09db68020a1da4e1a598ea3235bd8bb544f77 Mon Sep 17 00:00:00 2001 From: Sindre Moen Date: Thu, 30 Apr 2026 02:45:45 +0200 Subject: [PATCH] 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`. --- lsp/kotlin_lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)