Chris
Chris
I've experienced the same problem today. To reproduce, do the following: 1. % mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4 -DinteractiveMode=false 2. code my-app 3. right click my-app in the maven...
I can verify that using version `v0.38.2022092607` works in my case. I created a new quick-start project and was able to see both dependencies and the effective pom for the...
After reading more documentation, it looks like this is the way it is supposed to work. Personally, I'd rather it loaded-up the html page I'm currently editing rather than having...
> you want to edit a single file rather than run a local server. As any file is most likely to have other dependencies (styles, scripts and so on) it...
On a related note, you can't copy payload text from the network payload inspector. Steps: - Create a form and post it. - Go into DevTools in VS Code -...
I notice in another project I'm using reload as the server, but the index.html file is in the project root. Breakpoints are hit in that case and the expected file...
Okay, so one last noticing. In a no-express project served with reload and the index.html file in a subdirectory, the only way I could get break points hit is if...
Based on #896 I got the idea to try the headless option on my edge launch config. That didn't help me at all, but it did lead to me changing...
I notice that https://docs.microsoft.com/en-us/microsoft-edge/visual-studio-code/microsoft-edge-devtools-extension#automatically-attaching-to-microsoft-edge-and-launching-devtools-in-visual-studio-code makes mention of `make sure the variable {workspaceFolder} resolves` but doesn't tie that into how debugging would be affected by that detail. Docs for launch.json have...
I reproduced this problem. My grammar name was `Rows` and it was in a file `Rows.g4`. Then I changed the name of the grammar to lowercase `rows`. This produced the...