on contrôle la zone
parent
41590ba3dd
commit
0d48265e07
@ -0,0 +1,51 @@
|
|||||||
|
return {
|
||||||
|
'mfussenegger/nvim-dap',
|
||||||
|
optional = true,
|
||||||
|
dependencies = {
|
||||||
|
-- Ensure C/C++ debugger is installed
|
||||||
|
'williamboman/mason.nvim',
|
||||||
|
optional = true,
|
||||||
|
opts = function(_, opts)
|
||||||
|
if type(opts.ensure_installed) == 'table' then
|
||||||
|
vim.list_extend(opts.ensure_installed, { 'codelldb' })
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
opts = function()
|
||||||
|
local dap = require 'dap'
|
||||||
|
if not dap.adapters['codelldb'] then
|
||||||
|
require('dap').adapters['codelldb'] = {
|
||||||
|
type = 'server',
|
||||||
|
host = 'localhost',
|
||||||
|
port = '${port}',
|
||||||
|
executable = {
|
||||||
|
command = 'codelldb',
|
||||||
|
args = {
|
||||||
|
'--port',
|
||||||
|
'${port}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end
|
||||||
|
for _, lang in ipairs { 'c', 'cpp' } do
|
||||||
|
dap.configurations[lang] = {
|
||||||
|
{
|
||||||
|
type = 'codelldb',
|
||||||
|
request = 'launch',
|
||||||
|
name = 'Launch file',
|
||||||
|
program = function()
|
||||||
|
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
|
||||||
|
end,
|
||||||
|
cwd = '${workspaceFolder}',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = 'codelldb',
|
||||||
|
request = 'attach',
|
||||||
|
name = 'Attach to process',
|
||||||
|
processId = require('dap.utils').pick_process,
|
||||||
|
cwd = '${workspaceFolder}',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in New Issue