跳转至

VScode 右键快捷菜单

一、安装时配置

事实上 VSCode 支持右键快捷菜单,可以在安装时选择配置

vscode right key

二、注册表配置

​ 在使用 VSCode 时发现电脑上打开不方便,比如文件夹无法右键用 VSCode 打开,非常不方便,于是配置一下将 VSCode 添加至右键菜单【空白处右键,文件夹右键,文件右键】

  1. 新建一个后缀是 .reg 的文件,例如: vs.reg
  2. 用记事本或 Notepad++ 打开上述 .reg 文件,按照自己的需要将下面的代码复制粘贴到 .reg 文件中,然后根据自己 VSCode 的安装目录修改路径,保存后双击运行即可

下面为3种配置,可根据需要选择 ​

(一)空白处右键菜单里显示“Open with Code”

1
2
3
4
5
6
7
8
Windows Registry Editor Version 5.00

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

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

(二)选中文件右键菜单里显示“Open with Code”

1
2
3
4
5
6
7
8
Windows Registry Editor Version 5.00

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

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

(三)选中文件夹右键菜单里显示“Open with Code”

1
2
3
4
5
6
7
8
Windows Registry Editor Version 5.00

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

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

捐赠本站(Donate)

weixin_pay
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))