improve dap mappings

This commit is contained in:
Antoine Vaure 2025-01-04 17:44:46 +01:00
parent 7962bf3c0c
commit 743bfa810e
5 changed files with 127 additions and 241 deletions

View file

@ -71,12 +71,14 @@ dap.adapters.debugpy = function(cb, config)
end
end
require('dap.ext.vscode').load_launchjs("dap_config.json", {
cppdbg = { 'c', 'cpp' },
lldb = { 'c', 'cpp' },
gdb = { 'c', 'cpp' },
debugpy = { 'python' }
})
function launchjs()
require('dap.ext.vscode').load_launchjs("dap_config.json", {
cppdbg = { 'c', 'cpp' },
lldb = { 'c', 'cpp' },
gdb = { 'c', 'cpp' },
debugpy = { 'python' }
})
end
dap.set_log_level("TRACE")