右键菜单添加 Open with VSCode | VSCode 添加到右键菜单

复制如下内容,保存为 code.reg 文件

D:\\Software\\Microsoft VS Code\\Code.exe 替换为本地 vscode 路径

双击执行 code.reg ,弹出框全部选 「

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\VSCode]
@="Open with VSCode"
"Icon"="D:\\Software\\Microsoft VS Code\\Code.exe"

[HKEY_CLASSES_ROOT\*\shell\VSCode\command]
@="\"D:\\Software\\Microsoft VS Code\\Code.exe\" \"%1\""

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\VSCode]
@="Open with VSCode"
"Icon"="D:\\Software\\Microsoft VS Code\\Code.exe"

[HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]
@="\"D:\\Software\\Microsoft VS Code\\Code.exe\" \"%V\""

Windows Registry Editor Version 5.00

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

[HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode\command]
@="\"D:\\Software\\Microsoft VS Code\\Code.exe\" \"%V\""
发布了7 篇原创文章 · 获赞 3 · 访问量 311

猜你喜欢

转载自blog.csdn.net/sl285720967/article/details/103508967