diff options
Diffstat (limited to '')
| -rw-r--r-- | config/nvim/lua/commands.lua | 7 |
1 files changed, 7 insertions, 0 deletions
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 }) + |
