From dbc7997ee9dfe7918de6a4a94dd4b5e45891946f Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 24 Feb 2025 11:28:57 +0100 Subject: [PATCH] Improve loading of java specific features (only for java, not always) --- nvim/lua/plugins/lspconfig.lua | 75 ++++++++++++++++++---------------- 1 file changed, 39 insertions(+), 36 deletions(-) diff --git a/nvim/lua/plugins/lspconfig.lua b/nvim/lua/plugins/lspconfig.lua index 32cb0c5..1dc7a25 100755 --- a/nvim/lua/plugins/lspconfig.lua +++ b/nvim/lua/plugins/lspconfig.lua @@ -66,41 +66,6 @@ return { opts.desc = "Restart LSP" keymap.set("n", "rs", ":LspRestart", opts) - -- Keybinds for testing, refactoring, java specific - opts.desc = "Java profiling" - keymap.set("n", "jp", ":JavaProfile", opts) - - opts.desc = "Java Refactor: Extract Variable (create variable from cursor)" - keymap.set("n", "jev", ":JavaExtractVariable", opts) - - opts.desc = "Java Refactor: Extract Variable all occurrences (create variable from cursor)" - keymap.set("n", "jea", ":JavaExtractVariableAllOccurrence", opts) - - opts.desc = "Java Refactor: Extract Const (create const from cursor)" - keymap.set("n", "jec", ":JavaExtractConst", opts) - - opts.desc = "Java Refactor: Extract Method (create method from cursor)" - keymap.set("n", "jev", ":JavaExtractMethod", opts) - - opts.desc = "Java Refactor: Extract Field (create field from cursor)" - keymap.set("n", "jev", ":JavaExtractField", opts) - - -- Java testing, Debugging - opts.desc = "Java Testing: Run test class in buffer" - keymap.set("n", "jtc", ":JavaTestRunCurrentClass", opts) - - opts.desc = "Java Testing: Debug test class in buffer" - keymap.set("n", "jdc", ":JavaTestDebugCurrentClass", opts) - - opts.desc = "Java Testing: Run current method in buffer" - keymap.set("n", "jtm", ":JavaTestRunCurrentMethod", opts) - - opts.desc = "Java Testing: Debug current method in buffer" - keymap.set("n", "jdm", ":JavaTestDebugCurrentMethod", opts) - - opts.desc = "Java Testing: View last report" - keymap.set("n", "jtv", ":JavaTestViewLastReport", opts) - vim.opt.signcolumn = "yes" -- reserve space for diagnostics end @@ -167,9 +132,47 @@ return { on_attach = on_attach, }) + local java_on_attach = function(client, bufnr) + opts.buffer = bufnr + -- Keybinds for testing, refactoring, java specific + opts.desc = "Java profiling" + keymap.set("n", "jp", ":JavaProfile", opts) + + opts.desc = "Java Refactor: Extract Variable (create variable from cursor)" + keymap.set("n", "jev", ":JavaExtractVariable", opts) + + opts.desc = "Java Refactor: Extract Variable all occurrences (create variable from cursor)" + keymap.set("n", "jea", ":JavaExtractVariableAllOccurrence", opts) + + opts.desc = "Java Refactor: Extract Const (create const from cursor)" + keymap.set("n", "jec", ":JavaExtractConst", opts) + + opts.desc = "Java Refactor: Extract Method (create method from cursor)" + keymap.set("n", "jev", ":JavaExtractMethod", opts) + + opts.desc = "Java Refactor: Extract Field (create field from cursor)" + keymap.set("n", "jev", ":JavaExtractField", opts) + + -- Java testing, Debugging + opts.desc = "Java Testing: Run test class in buffer" + keymap.set("n", "jtc", ":JavaTestRunCurrentClass", opts) + + opts.desc = "Java Testing: Debug test class in buffer" + keymap.set("n", "jdc", ":JavaTestDebugCurrentClass", opts) + + opts.desc = "Java Testing: Run current method in buffer" + keymap.set("n", "jtm", ":JavaTestRunCurrentMethod", opts) + + opts.desc = "Java Testing: Debug current method in buffer" + keymap.set("n", "jdm", ":JavaTestDebugCurrentMethod", opts) + + opts.desc = "Java Testing: View last report" + keymap.set("n", "jtv", ":JavaTestViewLastReport", opts) + end + lspconfig.jdtls.setup({ capabilities = capabilities, - on_attach = on_attach, + on_attach = java_on_attach, }) lspconfig.texlab.setup{