Disabling terminal by default when starting debug session #754
Answered
by
mfussenegger
cheeze2000
asked this question in
Q&A
-
I found the |
Beta Was this translation helpful? Give feedback.
Answered by
mfussenegger
Nov 10, 2022
Replies: 1 comment
-
Some debug adapters have a If the debug adapter doesn't let you control if it uses a integrated terminal you can either:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cheeze2000
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some debug adapters have a
console
option with options likeintegratedConsole
orintegratedTerminal
. If that's the case you switch fromintegratedTerminal
tointegratedConsole
.If the debug adapter doesn't let you control if it uses a integrated terminal you can either:
terminal_win_cmd
to something liketabnew
, to have it open the terminal in a new tab in the backgroundterminal_win_cmd
to a lua function which creates a window/buffer and then hides it. Afaik nvim-dap-ui does that.