diff --git a/nvim/lua/plugins/lspconfig.lua b/nvim/lua/plugins/lspconfig.lua index fcb3e6d..32cb0c5 100755 --- a/nvim/lua/plugins/lspconfig.lua +++ b/nvim/lua/plugins/lspconfig.lua @@ -66,6 +66,41 @@ 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 @@ -132,50 +167,9 @@ 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) - - on_attach(client, bufnr) - end - lspconfig.jdtls.setup({ capabilities = capabilities, - on_attach = java_on_attach, + on_attach = on_attach, }) lspconfig.texlab.setup{