aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-12-03 01:18:23 +0000
committerBlaž Hrastnik2021-12-03 01:18:23 +0000
commit0d73a4d23abf7b14321ec4db39a272372f923ad3 (patch)
tree59589cf32bf187353ebb7d0316b3dc8e2e62bb73 /languages.toml
parentd14ca05d6b877826337db02888514269e1071f8c (diff)
dap: console = internalConsole is actually not a lldb-vscode param
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages.toml b/languages.toml
index f4b3874f..675bbbea 100644
--- a/languages.toml
+++ b/languages.toml
@@ -21,19 +21,19 @@ command = "lldb-vscode"
name = "binary"
request = "launch"
completion = [ { name = "binary", completion = "filename" } ]
-args = { console = "internalConsole", program = "{0}" }
+args = { program = "{0}" }
[[language.debugger.templates]]
name = "attach"
request = "attach"
completion = [ "pid" ]
-args = { console = "internalConsole", pid = "{0}" }
+args = { pid = "{0}" }
[[language.debugger.templates]]
name = "gdbserver attach"
request = "attach"
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]]
name = "toml"