Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I reset VSCode?

I altered vscode to use python and now when using javascript the option to 'open with live server' on a right click of the project is no longer available(replaced by 'run code'), I think the alterations I made, including adding python extensions, has changed the environment to one that can run python but I would like to return to the way it was, how can I do this?

like image 933
Ray Farrell Avatar asked Mar 13 '19 16:03

Ray Farrell


1 Answers

Try deleting default settings file, Its located at:

Windows %APPDATA%\Code\User\settings.json
macOS $HOME/Library/Application Support/Code/User/settings.json
Linux $HOME/.config/Code/User/settings.json

If that does not help, try deleting extensions located at:

Windows %USERPROFILE%\.vscode\extensions
macOS ~/.vscode/extensions
Linux ~/.vscode/extensions 
like image 116
MCMatan Avatar answered Oct 12 '22 17:10

MCMatan