How to restart VScode after editing extension's config?
Solution 1:
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" } ]
Solution 2:
-
Open the Command Palette
Ctrl + Shift + P
-
Then type:
Reload Window