Replies: 2 comments 5 replies
-
LLDB_LAUNCH_FLAG_LAUNCH_IN_TTY = "YES" I guess deleting this or setting to "no" could maybe work to launch in a separate Neovim terminal. I don't know whether it supports external terminals. It does not really have a documentation. But you can usually find how to configure it by looking at it's main.cpp in the lock code base. There should be one big config struct. |
Beta Was this translation helpful? Give feedback.
-
I think the lldb-vscode debug adapter currently does not support launching in an external console. There's also vadimcn/vscode-lldb which lists a Btw in your configuration: program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/')
end, You could add the program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
end, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i thought is better to ask a question here rather open an issue. ( I assume the whole idea of discussions is for those things to not open too many issues every time someone ignorant like me can't figure out something with the code) :P :P
I checked all issued (open and closed) before writing this, so i don't duplicate the same question. I really like his plugin, and actually for the first time in years i don't want to use
println
orcout
in my code but use a proper debugger. I am very pumped where this project goes.I am setting up a rust (and cpp) projects, but i need to figure out how to use an external terminal for the debugger:
As seen form code, i am trying both ways: with a
configurations.cpp
and setting up a special functionrebugger
but none seems to activate the external terminal specified bydap.defaults.cpp.external_terminal
. I am using all possibel forms in settings like:Again, sorry for asking an ignorant question. And believe me, i already spend more than 6 hours trying anything i can come up with, so after this, i decided to seek for help. Thanks to anyone who can give me some pointers. Cheers.
Beta Was this translation helpful? Give feedback.
All reactions