fix(lsp): make JDTLS use the correct config directory on Windows (#6121)

This commit is contained in:
Donghyun Shin 2025-12-26 12:17:54 +09:00 committed by GitHub
parent 8886c78dce
commit f59d274d0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1175,7 +1175,7 @@ export namespace LSPServer {
case "linux":
return "config_linux"
case "win32":
return "config_windows"
return "config_win"
default:
return "config_linux"
}