“Unverified breakpoint” in Visual Studio Code with Chrome Debugger extension

I finally found out whats wrong: When I read the definition of ‘${workspaceFolder}’, it states the following: the path of the folder opened in VS Code My mistake: My path in Windows to my project was as follow: C:\Users\myusername\Documents\VSCode\Source\ProjectName Through Visual Studio Code, I had the Source folder open, and always needed to do a … Read more

How can I change keyboard shortcut bindings in Visual Studio Code?

Click File -> Preferences -> Keyboard shortcuts. Use the tab that opens up to edit and find available key bindings and assign them. Historical Note: In very early versions of visual studio code, you would Click File -> Preferences -> Keyboard shortcuts and you would get JSON like this keybindings.json: // Place your key bindings … Read more

Visual Studio Code intellisense showing one suggestion at any time

VS Code 1.51 made the list of suggestions resizable so it’s possible your suggest widget is simply shrunken down to be a single line high. To fix this, trigger suggestions and then click and drag at the bottom edge of the suggest widget to increase the number of visible suggestions. Note that you can always … Read more