0
How can I fix this problem on vscode: it says unable to process 'evaluate' : debugging is running
2 Respostas
+ 1
A person called Hyangah posted this on Github:
"VSCode's DEBUG CONSOLE does not have tty. Its primarily purpose is to serve as the UI for evaluate expressions even though it can show stdout/stderr outputs for convenience.
For full tty support (stdin/stdout/stderr), use the console property in launch.json configuration, that will start debugging sessions in terminal (TERMINAL tab)"
Hope this helps you. Have a nice day!
+ 2
Thank you for this man!