How to restart VScode after editing extension’s config?
Execute the workbench.action.reloadWindow command. There are some ways to do so: Open the command palette (Ctrl + Shift + P) and execute the command: >Reload Window Define a keybinding for the command (for example CTRL+F5) in keybindings.json: [ { “key”: “ctrl+f5”, “command”: “workbench.action.reloadWindow”, “when”: “editorTextFocus” } ]