How to restart VScode after editing extension's config?

后端 未结 4 729
一整个雨季
一整个雨季 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:04

    You can use this VSCode Extension called Reload https://marketplace.visualstudio.com/items?itemName=natqe.reload

    0 讨论(0)
  • 2020-12-07 11:10
    Ctrl + Shift + o
    

    And then type

    >Reload Window
    
    0 讨论(0)
  • 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"
        }
      ]
      
    0 讨论(0)
  • 2020-12-07 11:30

    If your using windows 10 and your text editor is Visual Studio Code. click on extensions

    type 1.reload 2.then install it will add a reload button on your right hand at the bottom of the vs code.

    .....hope this will help

    0 讨论(0)
提交回复
热议问题