第一种
首先 win R 输入 regedit 回车打开注册表,
找到HKEY_CLASSES_ROOT
>*
>shell
/
在shell下新建 项
名字 Open with VS Code
在 Open with VS Code
文件夹下 新建 项 名字为command
(必须是这个名字)
例:
图
点击Open with VS Code
会出现如图右侧 蓝色框内的文字是右击菜单所显示的文字,可更改.
在右侧空白处 右击新建 可扩充字符串值
名字为Icon 数据处写 你自己的路径 , 0
. 如绿色框…
点击 command
, 在右侧右击 ‘默认’ > 修改 数值数据为 "D:LENOVOEMicrosoft VS CodeCode.exe" "%1"
路径改为自己的路径
以上为右击文件时的菜单及图标 , 下面说下右击文件夹时的菜单.
找到HKEY_CLASSES_ROOT
>Directory
>shell
具体操作同上…
第二种
新建文本 把下面代码放进去 改名为 vsCodeOpenFolder.reg .
注: 下面代码需把路径改为自己的路径.
改完后删除 //改完请删掉此注释
一切改完,运行此文件即可.
代码语言:javascript复制Windows Registry Editor Version 5.00
; Open files
[HKEY_CLASSES_ROOT*shellOpen with VS Code]
@="Edit with VS Code"
"Icon"="D:\LENOVOE\Microsoft VS Code\Code.exe",0" //改完请删掉此注释
[HKEY_CLASSES_ROOT*shellOpen with VS Codecommand]
@=""D:\LENOVOE\Microsoft VS Code\Code.exe" "%1"" //改完请删掉此注释
; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOTDirectoryshellvscode]
@="Open Folder as VS Code Project"
"Icon"="D:\LENOVOE\Microsoft VS Code\Code.exe",0" //改完请删掉此注释
[HKEY_CLASSES_ROOTDirectoryshellvscodecommand]
@=""D:\LENOVOE\Microsoft VS Code\Code.exe" "%1"" //改完请删掉此注释
; This will make it appear when you right click INSIDE a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOTDirectoryBackgroundshellvscode]
@="Open Folder as VS Code Project"
"Icon"="D:\LENOVOE\Microsoft VS Code\Code.exe",0" //改完请删掉此注释
[HKEY_CLASSES_ROOTDirectoryBackgroundshellvscodecommand]
@=""D:\LENOVOE\Microsoft VS Code\Code.exe" "%1"" //改完请删掉此注释