From 402f12c841f3dc92043ac3af3ad4524faf76d613 Mon Sep 17 00:00:00 2001 From: Kevin Nitro Date: Wed, 11 Dec 2024 21:37:09 +0700 Subject: [PATCH] fix(kotlin_language_server): wrong cmd on Windows #3500 fix #3499 --- lua/lspconfig/configs/kotlin_language_server.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/lua/lspconfig/configs/kotlin_language_server.lua b/lua/lspconfig/configs/kotlin_language_server.lua index 04ce396ed2..3255c96156 100644 --- a/lua/lspconfig/configs/kotlin_language_server.lua +++ b/lua/lspconfig/configs/kotlin_language_server.lua @@ -1,9 +1,6 @@ local util = require 'lspconfig.util' local bin_name = 'kotlin-language-server' -if vim.fn.has 'win32' == 1 then - bin_name = bin_name .. '.bat' -end --- The presence of one of these files indicates a project root directory --