欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VSCODE快速添加到鼠标右键菜单

程序员文章站 2024-01-06 14:10:40
...
  1. 创建一个文件夹1.reg,以reg,任意文件名即可。
  2. 查看自己的VSCODE安装路径,我的Code.exe路径为D:\\Program\\Microsoft VS Code\\Code.exe
  3. 将下列代码复制粘贴到reg文件中,并且将目录替换为你自己的路径。
  4. 执行即可增加入注册表。
Windows Registry Editor Version 5.00


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

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

Windows Registry Editor Version 5.00

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

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

Windows Registry Editor Version 5.00

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

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

上一篇:

下一篇: