[visual-studio-code] How to restart VScode after editing extension's config?

VScode notifies you when you open a config of an extension:

remember to Restart VScode

enter image description here

But it says nothing about how. They use capital letter for restart word, so normally it should mean something if you emphasize an appellation. Is there some hidden restart button or a key shortcut? How do I restart the IDE?

This question is related to visual-studio-code vscode-settings

The answer is


You can do the following

  1. Click on extensions
  2. Type Reload
  3. Then install

It will add a reload button on your right hand at the bottom of the vs code.


You can use this VSCode Extension called Reload

Marketplace > reload


Execute the workbench.action.reloadWindow command.

There are some ways to do so:

  1. Open the command palette (Ctrl + Shift + P) and execute the command:

    >Reload Window    
    
  2. Define a keybinding for the command (for example CTRL+F5) in keybindings.json:

    [
      {
        "key": "ctrl+f5",
        "command": "workbench.action.reloadWindow",
        "when": "editorTextFocus"
      }
    ]
    

  1. Open the Command Palette

    Ctrl + Shift + P

  2. Then type:

    Reload Window