From 87f61d4d95330768ea4dcec002c12b324d86b581 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Sun, 5 Oct 2025 19:17:34 +0300 Subject: sync --- config/nvim/lua/commands.lua | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'config/nvim/lua/commands.lua') diff --git a/config/nvim/lua/commands.lua b/config/nvim/lua/commands.lua index 8a987b0..abba436 100644 --- a/config/nvim/lua/commands.lua +++ b/config/nvim/lua/commands.lua @@ -4,3 +4,10 @@ end, { force = true }) vim.api.nvim_create_user_command("Upper", function() vim.cmd([[normal! gUaw]]) end, { force = true }) +vim.api.nvim_create_user_command("GoTestDebug", function() + require('dap-go').debug_test() +end, { force = true }) +vim.api.nvim_create_user_command("GoTestDebugLast", function() + require('dap-go').debug_last_test() +end, { force = true }) + -- cgit v1.2.3