Pierson Lee
Pierson Lee
@aleksijuvani I assume you are using `gdb`. This looks like the default setting for `gdb` which is 200 characters. You can add a command to increase it to unlimited by...
@JemmyWong Any solution for truncation in `cppvsdbg` will be in the debugger itself and will not apply to `lldb`. You can try the solution for `gdb` for `lldb`
@JoffreyAlto I haven't had time to investigate yet, but it is on my list.
If you [enable logging](https://github.com/Microsoft/vscode-cpptools/blob/master/Documentation/FAQs.md#how-to-enable-logging), you will see the command we put in a file that we tell VS Code to run. Can you see if that command looks ok?
This seems to stem from [this line](https://github.com/Microsoft/MIEngine/blob/d1189348e9bfd4e7843cbceb9db16509284acf76/src/MIDebugEngine/Engine.Impl/DebuggedProcess.cs#L2235) of code although I don't know why that line ends up creating a file. This command is to clear the terminal.
@esarver `shell` isn't a shell console command but rather a command to `gdb` to run the rest of that command in its default shell. these commands are sent to `gdb`...
Fastest way I can see would be to do a find and replace of `" "` with `","`. You can make it all one string but then its passed to...
I added it as a feature request. I assume we can provide a shortcut but this might be more beneficial to ask [VS Code](https://github.com/microsoft/vscode/issues) itself to have this feature instead...
I marked it as a Feature request and we can take a look at what it would take.
@ronanpaixao I think you are looking at two different issues. We set current working directory for gdb inside gdb using `-environment-cd` and your `"cwd"` value. This should be enough for...