How to pass arguments to program, when debugging in Visual Studio Code

0 Comments

Found my answer at: https://github.com/Microsoft/vscode/issues/2167 You have to pass the arguments as individual string elements: “args”: [ “–test”, “buildOutput/JavaScript1.js”, “–env”, “devtest-chrome-win8” ] My program needed a parameter -d and a parameter -s, so I changed

Fix Code Spell Checker extension NOT working in Visual Studio Code

0 Comments

I installed the code spell checker extension for Visual Studio Code https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker. But the spell checker was not working, the status bar showed an exclamation mark icon. For some reason the spell checker was disabled

Fix error: command ‘workbench.action.git.sync’ not found

0 Comments

In a previous visual studio code version I created a custom keybinding: { “key”: “ctrl+shift+s”, “command”: “workbench.action.git.sync” } In the current version of visual studio code I got the error: Warn: command ‘workbench.action.git.sync’ not found.