VScode notifies you when you open a config of an extension:
remember to Restart VScode
But it says nothing about how. T
You can use this VSCode Extension called Reload https://marketplace.visualstudio.com/items?itemName=natqe.reload
Ctrl + Shift + o
And then type
>Reload Window
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"
}
]
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