Konubinix' opinionated web of thoughts

Debug Adapter Protocol

Fleeting

types of console

  • internalConsole (default): the debugee output is shown in the default debug console. (e.g. VS Code Debug Console). The program does not have access to stdin.
  • integratedTerminal: The debugee will run in a terminal emulator integrated in IDE (e.g. VS Code Integrated Terminal) and have access to the usual terminal control codes and stdin/stdout/stderr.
  • externalTerminal: The debugee runs in a separate console window outside of IDE

https://github.com/golang/vscode-go/discussions/1626

Notes pointant ici