Skip to content

Instantly share code, notes, and snippets.

@rebel1324
Last active December 23, 2019 07:55
Show Gist options
  • Save rebel1324/d419600a55bd891eae3486919cbb0eea to your computer and use it in GitHub Desktop.
Save rebel1324/d419600a55bd891eae3486919cbb0eea to your computer and use it in GitHub Desktop.
Registers CMDER, INTELIJ, SUBLIME in right click context menu.
Windows Registry Editor Version 5.00
; Remove Git GUI, you're not going to use it.
[-HKEY_CLASSES_ROOT\Directory\Background\shell\git_gui]
[-HKEY_CLASSES_ROOT\Directory\shell\git_gui]
; Add Cmder Context Menu.
[HKEY_CLASSES_ROOT\Folder\shell\Cmder]
@="Open Cmder Here"
"Icon"="\"%CMDER_ROOT%\\icons\\cmder.ico\",0"
[HKEY_CLASSES_ROOT\Folder\shell\Cmder\command]
@="\"C:\\tools\\Cmder\\Cmder.exe\" /START \"%V\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder]
@="Open Cmder Here"
"Icon"="\"%CMDER_ROOT%\\icons\\cmder.ico\",0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder\command]
@="\"C:\\tools\\Cmder\\Cmder.exe\" /START \"%v\""
; Add Sublime Text Context Menu.
[HKEY_CLASSES_ROOT\Folder\shell\Sublime]
@="Open Sublime as Project"
"Icon"="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\",0"
[HKEY_CLASSES_ROOT\Folder\shell\Sublime\command]
@="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%V\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Sublime]
@="Open Sublime Here"
"Icon"="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\",0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Sublime\command]
@="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%V\""
[HKEY_CLASSES_ROOT\*\shell\Sublime]
@="Open with Sublime Text"
"Icon"="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\",0"
[HKEY_CLASSES_ROOT\*\shell\Sublime\command]
@="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%1\""
; Add InteliJ Context Menu.
[HKEY_CLASSES_ROOT\Directory\Background\shell\InteliJ]
@="Open InteliJ Here"
"Icon"="\"C:\\Program Files\\JetBrains\\IntelliJ IDEA 2019.3\\bin\\idea64.exe\",0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\InteliJ\command]
@="\"C:\\Program Files\\JetBrains\\IntelliJ IDEA 2019.3\\bin\\idea64.exe\" \"%V\""
[HKEY_CLASSES_ROOT\Folder\shell\InteliJ]
@="Open InteliJ as Project"
"Icon"="\"C:\\Program Files\\JetBrains\\IntelliJ IDEA 2019.3\\bin\\idea64.exe\",0"
[HKEY_CLASSES_ROOT\Folder\shell\InteliJ\command]
@="\"C:\\Program Files\\JetBrains\\IntelliJ IDEA 2019.3\\bin\\idea64.exe\" \"%V\""
[HKEY_CLASSES_ROOT\*\shell\InteliJ]
@="Open with InteliJ"
"Icon"="\"C:\\Program Files\\JetBrains\\IntelliJ IDEA 2019.3\\bin\\idea64.exe\",0"
[HKEY_CLASSES_ROOT\*\shell\InteliJ\command]
@="\"C:\\Program Files\\JetBrains\\IntelliJ IDEA 2019.3\\bin\\idea64.exe\" \"%1\""
; You already have Open VS Code.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment