183
votes

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?

5
Probably save the edited files and close VScode and open it again? - Superiom
This message is coming from the extension, not vscode - it's usually not required to reload vscode after changing an extension setting. - Rob Lourens

5 Answers

350
votes

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"
      }
    ]
    
21
votes
  1. Open the Command Palette

    Ctrl + Shift + P

  2. Then type:

    Reload Window
    
10
votes

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.

7
votes

You can use this VSCode Extension called Reload

Marketplace > reload

0
votes

Use Ctrl + R in Windows Or go manually Hit F1 or CTRL+Shift+p to Open Command Palette then select Reload Window