0%

右键使用VSCode打开

右键菜单添加Open With Code

一直以来都是用Notepad++来打开很多文档文件,但是我并不是很喜欢Notepad的UI,于是决定改为用VSCode来做替代。然而,由于在最初安装VSCode的时候没有勾选Add xxx那两个选项,导致现在右键菜单中没有“使用VSCode打开”这个选项(Notepad++有),我又懒得去注册表里找相关文件然后改,于是找到了下面的方法来添加这个选项。

新建一个.reg文件然后复制粘贴下面的代码,保存并运行后就能实现上述功能。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Windows Registry Editor Version 5.00



[HKEY_CLASSES_ROOT\*\shell\VSCode]

@="Open with Code"

"Icon"="D:\\Program Files\\Visual Studio Code\\Code.exe"



[HKEY_CLASSES_ROOT\*\shell\VSCode\command]

@="\"D:\\Program Files\\Visual Studio Code\\Code.exe\" \"%1\""



Windows Registry Editor Version 5.00



[HKEY_CLASSES_ROOT\Directory\shell\VSCode]

@="Open with Code"

"Icon"="D:\\Program Files\\Visual Studio Code\\Code.exe"



[HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]

@="\"D:\\Program Files\\Visual Studio Code\\Code.exe" \"%V\""



Windows Registry Editor Version 5.00



[HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode]

@="Open with Code"

"Icon"="D:\\Program Files\\Visual Studio Code\\Code.exe"



[HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode\command]

@="\"D:\\Program Files\\Visual Studio Code\\Code.exe" \"%V\""
------------------------END------------------------