vscode-debugger Questions
3
Solved
I've a Python package package_name which provides a command line application command-line-app-name as console_script:
setup.py:
setup(
...
entry_points={"console_scripts": ["comman...
Taxeme asked 27/10, 2020 at 14:45
2
Solved
I'm trying to figure out how to make a custom run configuration in Visual Studio Code, and am not succeeding in finding any documentation describing my use case.
I want to make a Run Configuration ...
Pieper asked 23/2, 2021 at 11:44
2
Solved
According to the official documentation "Python debugging in VS Code", launch.json can be configured to run with specific command line arguments, or you can use ${command:pickArgs} to inp...
Falcongentle asked 23/8, 2024 at 20:13
6
Solved
I turned on debugging mode in my VS Code and now want to turn it off, but can't work out how.
I have this floating menu:
And my bottom toolbar is still orange:
How do I revert to my old set up? (I...
Spermophyte asked 24/4, 2021 at 10:55
7
Solved
I have a Python project which I created according to basic Poetry instructions.
The project folder is something like this:
my-project
+----my_project
| +-- my_project.py
| +-- File1.py
| +-- File2....
Expurgate asked 8/9, 2021 at 16:12
4
Using gdb from the command line I'm able to break when the shared library is loaded. How can I get the same behavior in VS Code knowing that I have the source code of the shared library?
Wolford asked 11/3, 2019 at 8:50
4
Solved
I am new to VS Code and JavaScript, and I am trying to make a simple app using Vite and Svelte, but I have a problem which I can't seem to resolve. (My code is currently just the default code given...
Leavenworth asked 2/5, 2022 at 16:15
2
I have a launch configuration that runs a bat script as a pre launch task. Sometimes, the bat script fails to build my project. However, the debugging task still runs, which is really annoying, and...
Caulfield asked 1/6, 2021 at 19:14
4
I am following the guide from here on a nextjs application. Using VSCode on windows.
It says use the script:
"dev": "NODE_OPTIONS='--inspect' next dev"
this results in:
'NODE_OP...
Rom asked 15/6, 2021 at 21:18
2
Solved
I can set a breakpoint manualy, and run with debugger, but I can't set a breakpoint at a panic of a Rust program. How can I set a breakpoint at a panic like I would an exception in C++?
I'm using ...
Enculturation asked 1/8, 2018 at 16:39
1
I installed bun.js vs code plugin and have some success debugging typescript files with provided config.
Also able to debug one test file if I set program:${file}
But there is no launch.json exampl...
Valero asked 12/9, 2023 at 2:47
7
I'm trying to debug a flutter app using VSCode but it doesn't find any devices and show the message Cannot launch without an active device.
I can launch the app using the command flutter run --no-s...
Catabolism asked 17/7, 2021 at 18:3
3
I run different node versions to build different web apps on my machine. I use nvm to manage the environments.
I set the integrated terminal in VS Code for osx to zsh as so:
"terminal.integrated...
Solingen asked 30/7, 2019 at 23:36
2
Solved
I have tried many solutions but not anyone works for me. The code executes, but I am not able to place breakpoints & debug it. Could you please help me?
I have tried the following VSCode confi...
Rheum asked 4/6, 2020 at 13:35
9
Solved
I found a topic that encounter the same problem (Can't debug Golang in vscode apple m1) but I'm not sure it's an old solution or not because I'm using the Go version
go1.17.1 darwin/arm64
wit...
Ringhals asked 27/9, 2021 at 8:58
1
I'm getting this error: "File changes watcher stopped unexpectedly. A reload of the window may enable the watcher again unless the workspace cannot be watched for file changes."
I don't u...
Spandau asked 22/7, 2022 at 18:51
4
I have recently configured VS code to debug PHP with xdebug. It works reliably with my application code but when I am running unit tests with PHPunit, my breakpoints are ignored.
My server is run ...
Tomtit asked 24/8, 2019 at 9:39
2
Solved
How to disable the outlined "Debug" tip from showing up in package.json above the scripts section:
Dysgenics asked 13/6, 2020 at 9:56
6
Solved
Every time I build or run a program in VSCode a new python debug console is loaded. Before I know it I have 20+ and need to start deleting them. After 32 open consoles I get the error "The terminal...
Lima asked 29/12, 2018 at 23:41
3
when trying to use the VSCode Debugger, I get an error message:
"Failed to launch: could not launch process: can not run under Rosetta, check that the installed build of Go is right for your C...
Accouterment asked 7/4, 2022 at 7:39
5
I am using VSCode for web-developing with framework Django. There is no questions for debugging Django, but when i try to use Celery - debugger dosn't stop at breakpoints. I use this configuration ...
Dx asked 29/11, 2018 at 9:45
4
I did python debugging in VS code.
The following is the launch.json file:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For m...
Freestone asked 19/4, 2022 at 5:24
1
Solved
I'm trying to run a C program in VSCode. I am working to get a valid launch.json file, but it's complaining about the "type": "cppvsdbg" line, saying that the "Configured d...
Asylum asked 18/9, 2022 at 17:10
4
Solved
I started to use VS Code on Linux and I'd like to see the hex value of a variable near its value. I need it because the variable is a mask, so it is composed of 0's and 1's on certain positions. I ...
Hoem asked 11/10, 2016 at 8:27
4
Solved
I have installed javascript debugger for Edge browser in my VSCode
It modifies the launch.json file like this.
"configurations": [
{
"name": "Attach to Edge",
&q...
Macedonian asked 29/6, 2021 at 15:3
1 Next >
© 2022 - 2025 — McMap. All rights reserved.