Quellcode durchsuchen

fix java on attach

Chris vor 4 Jahren
Ursprung
Commit
2279cb3e65
1 geänderte Dateien mit 1 neuen und 6 gelöschten Zeilen
  1. 1 6
      ftplugin/java.lua

+ 1 - 6
ftplugin/java.lua

@@ -23,13 +23,8 @@ local util = require "lspconfig/util"
 --         CONFIG_PATH.."/.debuggers/java-debug/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.plugin-*.jar")
 --         CONFIG_PATH.."/.debuggers/java-debug/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.plugin-*.jar")
 -- };
 -- };
 
 
-local on_attach = function(client, bufr)
-  -- require('jdtls').setup_dap()
-  require("lsp").common_on_attach(client, bufr)
-end
-
 require("lspconfig").jdtls.setup {
 require("lspconfig").jdtls.setup {
-  on_attach = on_attach,
+  on_attach = require("lsp").common_on_attach,
   cmd = { DATA_PATH .. "/lspinstall/java/jdtls.sh" },
   cmd = { DATA_PATH .. "/lspinstall/java/jdtls.sh" },
   filetypes = { "java" },
   filetypes = { "java" },
   root_dir = util.root_pattern { ".git", "build.gradle", "pom.xml" },
   root_dir = util.root_pattern { ".git", "build.gradle", "pom.xml" },