Adding Java and Godot LSP entriesl

Former-commit-id: ba82526040
This commit is contained in:
2025-08-09 15:58:14 -05:00
parent c1dc6d589e
commit 3091ed88bc

View File

@@ -6,6 +6,16 @@ exports.servers = [
connectionType: "stdio", connectionType: "stdio",
relativePath: false relativePath: false
}, { }, {
endpointName: "gdscript",
args: [
"./Godot_v4.4-stable_linux.x86_64", ["--headless", "--lsp-port", "9999"]
],
nameEndsWith: ".gd",
connectionType: "stdio",
relativePath: false
}, {
endpointName: "go", endpointName: "go",
args: [ args: [
'gopls', ['-mode=stdio', '-remote=auto'] 'gopls', ['-mode=stdio', '-remote=auto']
@@ -38,12 +48,18 @@ exports.servers = [
}, { }, {
endpointName: "java", endpointName: "java",
args: [ args: [
'jdtls', [] 'javals', ["jdtls"]
],
nameEndsWith: ".java",
connectionType: "stdio"
}, {
endpointName: "java-other",
args: [
'javals', ["java-language-server"]
], ],
nameEndsWith: ".java", nameEndsWith: ".java",
connectionType: "stdio" connectionType: "stdio"
}, { }, {
endpointName: "r", endpointName: "r",
args: [ args: [
'r', ['--slave', '-e', 'languageserver::run()'] 'r', ['--slave', '-e', 'languageserver::run()']