From aac1f22b1de3874dea1b42aa103fc15f6bba9bd3 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 21 Feb 2025 13:20:03 +0100 Subject: [PATCH] Finish up testing prep --- nvim/lua/plugins/lspconfig.lua | 59 ++++++++++++++++++++++------------ nvim/lua/plugins/neotest.lua | 33 ++++++++++--------- 2 files changed, 55 insertions(+), 37 deletions(-) diff --git a/nvim/lua/plugins/lspconfig.lua b/nvim/lua/plugins/lspconfig.lua index 64bc0e2..32cb0c5 100755 --- a/nvim/lua/plugins/lspconfig.lua +++ b/nvim/lua/plugins/lspconfig.lua @@ -5,9 +5,11 @@ return { dependencies = { "hrsh7th/cmp-nvim-lsp", { "antosha417/nvim-lsp-file-operations", config = true }, - "mfussenegger/nvim-jdtls", + -- "mfussenegger/nvim-jdtls", + "nvim-java/nvim-java" }, config = function() + require('java').setup() -- import lspconfig plugin local lspconfig = require("lspconfig") @@ -64,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 @@ -130,26 +167,6 @@ return { on_attach = on_attach, }) - -- lspconfig.ts_ls.setup({ - -- capabilities = capabilities, - -- on_attach = on_attach, - -- }) - - -- local mason_registry = require('mason-registry') - -- local vue_language_server_path = mason_registry.get_package('vue-language-server'):get_install_path() .. '/node_modules/@vue/language-server' - -- - -- lspconfig.volar.setup({ - -- capabilities = capabilities, - -- on_attach = on_attach, - -- -- cmd = { "vue-language-server", "--stdio" }, - -- filetypes = { "vue" }, - -- -- settings = { - -- -- typescript = { - -- -- tsdk = '/usr/lib/node_modules/typescript/lib' - -- -- } - -- -- } - -- }) - lspconfig.jdtls.setup({ capabilities = capabilities, on_attach = on_attach, diff --git a/nvim/lua/plugins/neotest.lua b/nvim/lua/plugins/neotest.lua index dd40ef5..8724978 100755 --- a/nvim/lua/plugins/neotest.lua +++ b/nvim/lua/plugins/neotest.lua @@ -11,8 +11,6 @@ return { -- For C, C++, Rust "orjangj/neotest-ctest", "rouge8/neotest-rust", - --For Java - "rcasia/neotest-java" }, config = function() local neotest = require("neotest") @@ -29,41 +27,44 @@ return { require("neotest-ctest"), -- Rust Adapter require("neotest-rust"), - -- Java Adapter - require("neotest-java"), }, }) -- Keybinding Setup local opts = { noremap = true, silent = true } - -- Base Keybind for testing, starting with t - keymap("n", "t", "Neotest", opts) -- Open neotest panel - -- Run nearest test - keymap("n", "tn", "Neotest run nearest", opts) + opts.desc = "Run nearest test" + keymap("n", "tr", require("neotest").run.run(), opts) -- Run all tests in the current file - keymap("n", "tf", "Neotest run file", opts) + opts.desc = "Run all tests in current file" + keymap("n", "tf", require("neotest").run.run(vim.fn.expand("%")), opts) -- Run all tests in the entire project + opts.desc = "Run all tests in project" keymap("n", "ta", "Neotest run", opts) -- Stop running tests + opts.desc = "Stop tests" keymap("n", "ts", "Neotest stop", opts) - -- Jump to next test failure - keymap("n", "tj", "Neotest jump to failure", opts) + opts.desc = "Jump to next test" + keymap("n", "tn", "Neotest jump next", opts) + + opts.desc = "Jump to previous test" + keymap("n", "tp", "Neotest jump prev", opts) -- Show test summary - keymap("n", "tsm", "Neotest summary", opts) + opts.desc = "Show neotest test summary" + keymap("n", "tv", "Neotest summary", opts) -- Toggle the Neotest panel - keymap("n", "tt", "Neotest toggle panel", opts) + opts.desc = "Show neotest output" + keymap("n", "to", "Neotest output", opts) - -- Additional useful keybindings - keymap("n", "tp", "Neotest prev", opts) -- Jump to previous test failure - keymap("n", "tnx", "Neotest run ext", opts) -- Run test using external runner (useful for custom test setups) + opts.desc = "Show neotest output as panel" + keymap("n", "tn", "Neotest output-panel", opts) end, }, }