dap: console = internalConsole is actually not a lldb-vscode param

pull/574/head
Blaž Hrastnik 3 years ago
parent d14ca05d6b
commit 0d73a4d23a

@ -21,19 +21,19 @@ command = "lldb-vscode"
name = "binary" name = "binary"
request = "launch" request = "launch"
completion = [ { name = "binary", completion = "filename" } ] completion = [ { name = "binary", completion = "filename" } ]
args = { console = "internalConsole", program = "{0}" } args = { program = "{0}" }
[[language.debugger.templates]] [[language.debugger.templates]]
name = "attach" name = "attach"
request = "attach" request = "attach"
completion = [ "pid" ] completion = [ "pid" ]
args = { console = "internalConsole", pid = "{0}" } args = { pid = "{0}" }
[[language.debugger.templates]] [[language.debugger.templates]]
name = "gdbserver attach" name = "gdbserver attach"
request = "attach" request = "attach"
completion = [ { name = "lldb connect url", default = "connect://localhost:3333" }, { name = "file", completion = "filename" }, "pid" ] completion = [ { name = "lldb connect url", default = "connect://localhost:3333" }, { name = "file", completion = "filename" }, "pid" ]
args = { console = "internalConsole", attachCommands = [ "platform select remote-gdb-server", "platform connect {0}", "file {1}", "attach {2}" ] } args = { attachCommands = [ "platform select remote-gdb-server", "platform connect {0}", "file {1}", "attach {2}" ] }
[[language]] [[language]]
name = "toml" name = "toml"

Loading…
Cancel
Save