Terminal printing list of multiple environment variables #31
-
Hi, Is there a way to somehow configure the debug session to stop these printouts? The below is our lauch.json file.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
A screenshot would help to confirm this, but I think what you are talking about is the environment that is used to launch gdb because you are using
The It is actually Theia (or VSCode) creating this output because the adapter is using runInTerminal and including the environment variables to use when launching gdb. The environment it is using is the environment that the debug adapter is running in, which may be different than the environment that the terminal opens in. Perhaps we could remove the environment as I suspect most of the time it will actually be the same or compatible as what the created terminal will be anyway, at least on Linux (which is all we support so far for The ideal place to fix this extra output would be in Theia/VSCode itself when using the |
Beta Was this translation helpful? Give feedback.
A screenshot would help to confirm this, but I think what you are talking about is the environment that is used to launch gdb because you are using
"openGdbConsole": true
. Is it something like:The
openGdbConsole
is obviously a useful feature you don't want to turn off!It is actually Theia (or VSCode) creating this output because the adapter is using runInTerminal and including the environment variables to use when launching gdb.
The environment it is using is the environment that the debug adapter is running in, which may be different than the environment that the terminal opens in.
Perhaps we coul…