Home > Development Tools > VSCode > body text

Where is the vscode plug-in installed?

藏色散人
Release: 2019-12-23 09:35:59
Original
9528 people have browsed it

Where is the vscode plug-in installed?

Where is the vscode plug-in installed?

If the vscode plug-in is installed to the C drive by default, the extensions file will be very large and occupy the space on the C drive.

Where is the vscode plug-in installed?

Customize the vscode plug-in Installation location

1. Prerequisite: VSCode has been installed and added to the environment variable path;

2. Open cmd, enter code --help, the display is as follows:

Method:

1. (Recommended, no need to restart the computer every time) Enter the command: code --extensions-dir your target folder, press Enter to start vscode, which is installed at this time The plug-in will be placed in the specified directory.

code --extensions-dir D:\software\vscode\extensions
Copy after login

2. Or write a bat file and call this command to start vscode every time (it’s a bit troublesome, because if you don’t call this bat, you will not be able to find the installation location of the plug-in every time you start the computer):

@echo off 
if "%1" == "h" goto begin 
mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit 
:begin 
code --extensions-dir F:\ProgramFiles\VSCode\extensions
Copy after login

No matter which method is used, the newly set address must have these plug-ins or be reinstalled. At this time, opening vscode will prompt to reload, but reloading is useless

Reason: Because in your There is no plug-in in the new plug-in location, just copy it. In this way, after reinstalling the system, the plug-in will still be there. Space

Where is the vscode plug-in installed?

Related recommendations:

vscode introductory tutorial

Where is the vscode plug-in installed?

The above is the detailed content of Where is the vscode plug-in installed?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!