-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddVSCodiumToContextMenu.reg
22 lines (21 loc) · 1.19 KB
/
addVSCodiumToContextMenu.reg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Windows Registry Editor Version 5.00
; Open files
[HKEY_CLASSES_ROOT\*\shell\Open with VSCodium]
@="Edit with VSCodium"
"Icon"="C:\\Users\\matya\\AppData\\Local\\Programs\\VSCodium\\VSCodium.exe,0"
[HKEY_CLASSES_ROOT\*\shell\Open with VSCodium\command]
@="\"C:\\Users\\matya\\AppData\\Local\\Programs\\VSCodium\\VSCodium.exe\" \"%1\""
; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\shell\vscodium]
@="Open Folder as VSCodium Project"
"Icon"="\"C:\\Users\\matya\\AppData\\Local\\Programs\\VSCodium\\VSCodium.exe\",0"
[HKEY_CLASSES_ROOT\Directory\shell\vscodium\command]
@="\"C:\\Users\\matya\\AppData\\Local\\Programs\\VSCodium\\VSCodium.exe\" \"%1\""
; This will make it appear when you right click INSIDE a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscodium]
@="Open Folder as VSCodium Project"
"Icon"="\"C:\\Users\\matya\\AppData\\Local\\Programs\\VSCodium\\VSCodium.exe\",0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscodium\command]
@="\"C:\\Users\\matya\\AppData\\Local\\Programs\\VSCodium\\VSCodium.exe\" \"%V\""