How to restart VScode after editing extension's config?

后端 未结 4 718
一整个雨季
一整个雨季 2020-12-07 11:03

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

remember to Restart VScode

But it says nothing about how. T

4条回答
  •  醉梦人生
    2020-12-07 11:15

    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"
        }
      ]
      

提交回复
热议问题