Home > Article > Development Tools > Where are the vscode extensions placed?
vscode (Visual Studio Code) is a free and open source modern lightweight code editor that supports syntax highlighting, intelligent code completion, custom hotkeys, bracket matching, and code snippets for almost all mainstream development languages. , code comparison Diff, GIT and other features, supports plug-in extensions, and is optimized for web development and cloud application development.
#vscode software supports Win, Mac and Linux across platforms. vscode is an increasingly popular editor. Its features are free, open source, multi-platform, as well as integrated git, code debugging, rich plug-ins, etc., and it is gradually known and recognized by everyone.
Where is the vscode extension? Where is it installed?
● Windows:
C:\Users\你的用户名\.vscode\extensions
If you don’t want to install the plug-in on the C drive, you can create a new file to store the plug-in, and then modify the path in the shortcut target
Add --extensions-dir "new plug-in storage location" after the original target, for example
"D:\Program Files\Microsoft VS Code\Code.exe" --extensions -dir "D:\Program Files\Microsoft VS Code\extensions"
Then restart vscode
● Mac
~/.vscode/extensions
● Linux
~/.vscode/extensions
Related recommendations: vscode usage tutorial
The above is the detailed content of Where are the vscode extensions placed?. For more information, please follow other related articles on the PHP Chinese website!