You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
266 B
Lua

local command = vim.api.nvim_create_user_command
local del_command = vim.api.nvim_del_user_command
command("DapPyMethod", function()
require("dap-python").test_method()
end, {})
command("DapPyClass", function()
require("dap-python").test_class()
end, {})