-
After starting a debug session in a rust project, the DAP Console doesn't show anything from stdout and the buffer is not modifiable. The DAP REPL shows debugger logs and stdout (I'm not familliar with the DAP REPL, but maybe there's a command that can write to stdin?) I've set up DAP for python a long time ago, setting its console to integratedTerminal, and stdin and stdout works in the DAP Console. debugpy configdap.adapters.python = {
type = 'executable',
command = 'python',
args = { '-m', 'debugpy.adapter' },
}
dap.configurations.python = {
{
type = 'python',
name = 'launch - debugpy',
request = 'launch',
program = '${file}',
console = 'integratedTerminal',
},
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey 👋 I don't think I can help you here, as this is an nvim-dap or lldb/codelldb issue. Afaik, not all debug adapters support Possibly related: mfussenegger/nvim-dap#1127 |
Beta Was this translation helpful? Give feedback.
Hey 👋
I don't think I can help you here, as this is an nvim-dap or lldb/codelldb issue.
Afaik, not all debug adapters support
integratedTerminal
.Possibly related: mfussenegger/nvim-dap#1127