2,227 questions
0
votes
0
answers
54
views
How to Debug Node.JS apps with Google Firebase Studio?
I am having hard time while trying to debug a Node.JS app with the visual interface of VS Code. Firebase studio has only the option to "Install additional debuggers..."
The option to "...
1
vote
0
answers
60
views
Visual Studio Code debugger not catching breakpoint in first Flutter template app (running on Google Chrome))
I am trying to figure it out why while debugging in Visual Studio Code the first template Flutter app the debugger is not catching the instruction:
_counter++;
or
_counter--;
Here, I am attaching ...
1
vote
2
answers
12k
views
How to compile C program in Visual Studio Code?
I installed VSC and wrote this program
#include <stdio.h>
int main( void )
{
printf("Hello world!");
}
Then I installed a C/C++ debugger and I saved the file on the desktop as &...
10
votes
2
answers
36k
views
How to connect VSCode to a remote SSH host, inside an SSH host?
I have hardware available through my university jump host, to which I connect to through ssh:
$ ssh [email protected]
Password: *******
$ ssh hardware1
Password: *******
[my_computer] --&...
18
votes
3
answers
5k
views
Jupyter Notebook extension Visual Studio Code stuck "connecting to kernel"
I use Python 3.11.1 and Jupyter Notebook to run code selections or lines in the Interactive Window for debugging or coding purposes.
A few days ago, everything was working fine, and I didn't have any ...
1
vote
0
answers
95
views
understanding debugger output stm32nucleof401re
I am getting the following error (debugger output) when i try to do "ST_LINK: attach to application" in vscode. I have no idea what is going on. Any help is greatly appreciated.
I use WSL ...
2
votes
1
answer
255
views
In VS Code, how can I automatically focus the "Run and Debug" on break?
I have the "Run and Debug" tab in the bottom panel, together with other tabs like "Terminal" and "Test results". When I debug a test from the test explorer, "Test ...
0
votes
1
answer
135
views
An error occurred while launching the application. spawn EINVAL (error code 303)
I have my Expo project running on port 8081. I start it with the command:
npx expo start
I open it on my phone using the Expo Go app (SDK 52).
I’m trying to set up debugging in VS Code using ...
15
votes
2
answers
9k
views
how to disable message "You may only use the Microsoft .NET Core Debugger..."?
I'm running Visual Studio Code 1.42.1 on Ubuntu 19.10, using the default C# extension version 1.21.11.
Whenever I launch a C# program using "Start Debugging", or even via "Run Without ...
5
votes
2
answers
2k
views
Debugging Chrome Extension in VS Code throws 'Cannot connect to the target' error
I am trying to debug a Chrome Extension in VS Code using 'Attach to Chrome' configuration. However, when I run the debugger, it throws an error: "Cannot connect to the target at localhost:9222: ...
1
vote
4
answers
759
views
VSCode python debugger always activates base env on top of selected interpreter with anaconda
After setting up Anaconda and VSCode on my new Mac and selecting my desired python interpreter (in this case called lotteryfl), it seems that a new terminal always starts with a base env activated on ...
1
vote
2
answers
10k
views
How do I step through code when debugging in VSCode?
I'm very new to debugging. My whole programming "career" has been limited to inserting print statements to try to figure out why things aren't working the way I want them to. Now I'm trying ...
1
vote
2
answers
2k
views
Error: "There is no data provider registered that can provide view data", while coding Visual Studio Code extension in debug mode
While coding and running an extension in debug mode, I get the error mentioned in the title.
Here is my extension.js:
// The module 'vscode' contains the VS Code extensibility API
// Import the ...
3
votes
2
answers
2k
views
"error: unknown option: --interpreter=mi" trying to debug with lldb on Mac
I am receiving the "error: unknown option: --interpreter=mi" when trying to debug with lldb in VS Code on Mac for C++, Clang Compiler, and an OpenMP implementation. I am unable to debug ...
3
votes
1
answer
116
views
Is there a debugger API for VS Code?
I would like to know if there exists any way to interact programmatically with the vs code debugger during a session.
Python would be ideal, but JS/TS could also work. For the langages being debugged (...