美文网首页
win 下鼠标右键可以打开项目

win 下鼠标右键可以打开项目

作者: shmaur | 来源:发表于2019-01-25 10:43 被阅读8次

新建文本,把后缀改为.reg,输入一下代码,路径改为自己的地址

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\VSCode]
@="Open with Code"
"Icon"="H:\\Program Files\\Microsoft VS Code\\Code.exe"

[HKEY_CLASSES_ROOT\*\shell\VSCode\command]
@="\"H:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%1\""

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\VSCode]
@="Open with Code"
"Icon"="H:\\Program Files\\Microsoft VS Code\\Code.exe"

[HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]
@="\"H:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%V\""

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode]
@="Open with Code"
"Icon"="H:\\Program Files\\Microsoft VS Code\\Code.exe"

[HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode\command]
@="\"H:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%V\""

相关文章

网友评论

      本文标题:win 下鼠标右键可以打开项目

      本文链接:https://www.haomeiwen.com/subject/alhmjqtx.html