添加 Open with VSCode到右键菜单

2021/5/21 18:55:29

本文主要是介绍添加 Open with VSCode到右键菜单,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

想要如下效果:

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

 

 

 

 

 

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

 

 

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、大功告成~



这篇关于添加 Open with VSCode到右键菜单的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程