Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
115 views

I have a main function which calls many other functions. Each function is in a file separated from the main function. lets say the following main.py variable1 = 123 variable2 = 1435 from utilsfolder....
BelloDev's user avatar
0 votes
0 answers
87 views

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 ...
di0n's user avatar
  • 87
15 votes
2 answers
3k views

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 ...
newbie's user avatar
  • 111
0 votes
2 answers
132 views

I would like to know how to setup launch.json and tasks.json to close all relevant terminals after debugging session is stopped. For example i run ASP.NET app and Stripe Webhook Listen in compound ...
Dživo Jelić's user avatar
1 vote
3 answers
145 views

My vsCode is always on auto save mode The problem I'm having is that with every minor change in the code, vsCode loses focus and the page is redirected to the browser to display the output Please help ...
H24's user avatar
  • 21
1 vote
1 answer
141 views

Basics: NextJS 14.2.16 Pages Router VSCode IDE (latest version) Flask is the backend, NextJS is only used to serve a React front-end. Goal: Debug web app with Chrome using a user profile that has ...
MKF's user avatar
  • 686
0 votes
0 answers
46 views

VS Code Version: Version: 1.103.2 (user setup) Commit: 6f17636121051a53c88d3e605c491d22af2ba755 Date: 2025-08-20T16:45:34.255Z Electron: 37.2.3 ElectronBuildId: 12035395 Chromium: 138.0.7204.100 Node....
wicast's user avatar
  • 1
2 votes
1 answer
134 views

Debug environment: Ubuntu Linux 24.04, VSCode, a c++ app being debugged using the VSCODE-hosted version of gdb (the default Microsoft-supplied C/C++ debugger). I am trying to debug a problem in my app....
Robin Davies's user avatar
  • 7,955
0 votes
1 answer
98 views

I am trying to figure out how can I debug a script, in VS Code, that executes in the browser, but its source is Typescript. I provide my full setup so far here - package.json: "scripts": { ...
Marinos An's user avatar
  • 11.3k
0 votes
1 answer
91 views

I'm encountering a strange issue where my Python application runs successfully in VSCode but fails when executed directly via the terminal using the command: python main.py The error seems to be ...
user26558855's user avatar
1 vote
1 answer
154 views

I've joined to an open source project, called Kando ( https://github.com/kando-menu/kando ). And I can't make breakpoints work in VSCode :( When I set a break point and run the application, it says &...
nightcoder's user avatar
  • 13.4k
0 votes
0 answers
61 views

I'm experimenting with using Claude's MCP functionality to build a C# game. This toolset requires being run in WSL on Windows. I've got the basic setup out of the way, and am running a C# application. ...
Josh Mohan's user avatar
0 votes
1 answer
63 views

I'm trying to run NetBox in a remote installation of VS Code Server on a Ubuntu VM. I have a venv activated, and in VS Code I'm pointing to venv/bin/python as the the interpreter. Despite all of this, ...
Colin Lacy's user avatar
1 vote
1 answer
63 views

I have written a cmdlet called Select-Blah.ps1 that extract certain information from log files. The log files are sent to my cmdlet via the pipeline: PS> Get-Content log.txt | Select-Blah How can ...
dan-gph's user avatar
  • 17.1k
0 votes
0 answers
130 views

Problem I have a ruby sinatra app running in docker. I would like to interactively debug this app (in VSCode). Existing App docker-compose.yml my_sinatra_app: container_name: my_sinatra_app ...
terrywb's user avatar
  • 4,016
0 votes
0 answers
21 views

I have created local.ccb_workspace file, where all my tasks, settings and launch configuration is present. Now in one of the launch config I am taking input from the user. Now I want to either pass ...
Satya's user avatar
  • 1
2 votes
0 answers
75 views

Context: I'm trying to improve debugging ergonomics of a C/C++ executable. I want to be able to pretty-print some types while debugging. To do so, I would use a 'pretty-printing library' that my ...
NyuB's user avatar
  • 158
2 votes
0 answers
76 views

I'm trying to set up a tasks.json in VSCode to start a Maven task with Cucumber Test in debug mode. The task uses an input of type promptString to ask the user for a working directory of the features. ...
Rich's user avatar
  • 4,378
1 vote
0 answers
95 views

I'm running a Node.js application written in TypeScript. I use VS Code for debugging and run the app using ts-node, with source maps enabled. I'm running the app with the --inspect flag and using VS ...
aditya rawat's user avatar
1 vote
3 answers
631 views

I'm trying to debug a fortran90 application, using vscode with gdb. In one particular function: subroutine get_hamiltonian(...) real :: list(:) ... end subroutine get_hamiltonian I can not ...
tornikeo's user avatar
  • 982
0 votes
0 answers
41 views

I'm struggling with how to define the correct launch.json configuration to enable client side JS debugging in VSCode. The setup is: I am using webpack to create a single JS file, with sourcemaps I am ...
Jason Polites's user avatar
1 vote
0 answers
180 views

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 ...
Vulume's user avatar
  • 65
0 votes
1 answer
256 views

How do I get debugger to run on my function in VSCode with this as my launch.json and task.json (respectively) when I use type shell on a task? launch.json task.json When I run debugger on this, I ...
kimbers's user avatar
1 vote
0 answers
51 views

I am trying to hit breakpoints in VS code when serving an SPA from an ASP.NET Core app. The SPA is built with webpack and placed in the ${workspaceFolder}/build folder. The content is then copied to ...
noontz's user avatar
  • 2,087
2 votes
0 answers
103 views

I use codelldb extension in vscode. Before, this configuration in settings.json worked: { "name": "LLDB coredump", "type": "lldb"...
zclll's user avatar
  • 117

1
2 3 4 5
45