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

thinking-toggle-wip
Donghyun Shin 2025-12-26 12:17:54 +09:00 committed by Aiden Cline
parent e60ef0286d
commit e98a2a5e47
1 changed files with 1 additions and 1 deletions

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"
}