blob: abba436af03a9625a94a2875bad42d7a58ec90e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
vim.api.nvim_create_user_command("Lower", function()
vim.cmd([[normal! guaw]])
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 })
|