右键菜单栏出现 VS Code 选项设置

320 阅读1分钟

右键菜单栏出现 VS Code 选项设置

image.png

直接运行 .reg 文件即可

将以下的内容写进 txt 并修改后缀名为 .reg,然后双击运行即可 !!! 需要将 D:\\Programs\\Microsoft VS Code\\Code.exe 修改为自己电脑 VS Code 的路径。

Windows Registry Editor Version 5.00   
   
; Open files   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code]   
@="Edit with VS Code"   
"Icon"="D:\\Programs\\Microsoft VS Code\\Code.exe",0"     
   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command]   
@="\"D:\\Programs\\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_ROOT\Directory\shell\vscode]   
@="Open Folder as VS Code Project"   
"Icon"="D:\\Programs\\Microsoft VS Code\\Code.exe",0"    
   
[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]   
@="\"D:\\Programs\\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_ROOT\Directory\Background\shell\vscode]   
@="Open Folder as VS Code Project"   
"Icon"="D:\\Programs\\Microsoft VS Code\\Code.exe",0"      
   
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]   
@="\"D:\\Programs\\Microsoft VS Code\\Code.exe\" \"%1\""