mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-09 00:18:39 +00:00
12 lines
441 B
Lua
12 lines
441 B
Lua
require("dap-python").setup("%PYTHONENV%/bin/python")
|
|
|
|
do
|
|
local whichkey = require("which-key")
|
|
whichkey.add({
|
|
{ "<localleader>pd", desc = "Debugger-related commands" },
|
|
{ "<localleader>pdt", desc = "Tests" },
|
|
{ "<localleader>pdtf", require("dap-python").test_class, desc = "Run Python tests in the current file" },
|
|
{ "<localleader>pdtc", require("dap-python").test_method, desc = "Run the Python test under the cursor" },
|
|
})
|
|
end
|