添加 Open with VSCode到右键菜单

想要如下效果:

在文件上直接右键,可以选择Open with VSCode即用VSCode打开。

 

 添加 Open with VSCode到右键菜单

 

 

 

1、在桌面新建一个后缀为xxx.reg的文件:

添加 Open with VSCode到右键菜单

 

 

2、用记事本打开,然后把下面文字拷贝进去:

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\""

注意:
以上所有的   D:\Software\Microsoft VS Code\Code.exe   要改成自己vscode的安装路径。

 

3、然后保存文件,双击直接运行,此时右键菜单多出一个 open with VSCode。

 

4、大功告成~

上一篇:华为tftp导入导出配置


下一篇:【跟我一起开辟Qt之路】(1)Qt 和Qt Creator简介