将vsCode快捷方式添加到鼠标右键工具栏中解决方案

问题:安装vsCode的时候没有选择添加的右键工具栏,后期想要添加。

解决一:重装vsCode,但是麻烦。

解决二:新建一个"vsCodeOpenFolder"文件,复制如下代码,将标红的路径修改为自己vsCode的路径,然后将文件后缀修改为".reg",双击运行vsCodeOpenFolder.reg,如果遇到弹出点是。

Windows Registry Editor Version 5.00   
   
; Open files   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code]   
@="Edit with VS Code"   
"Icon"="F:\\ruanjiananzhuang\\qdsoftwork\\Microsoft VS Code\\Code.exe,0"   
   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command]   
@="\"F:\\ruanjiananzhuang\\qdsoftwork\\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"="\"F:\\ruanjiananzhuang\\qdsoftwork\\Microsoft VS Code\\Code.exe\",0"   
   
[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]   
@="\"F:\\ruanjiananzhuang\\qdsoftwork\\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"="\"F:\\ruanjiananzhuang\\qdsoftwork\\Microsoft VS Code\\Code.exe\",0"   
   
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]   
@="\"F:\\ruanjiananzhuang\\qdsoftwork\\Microsoft VS Code\\Code.exe\" \"%V\""

猜你喜欢

转载自blog.csdn.net/yellowmushroom/article/details/80743893