Created
February 25, 2019 12:19
-
-
Save jonathannerat/08985df840e1c8c948e944dd291378e8 to your computer and use it in GitHub Desktop.
Create / Restore Sublime Text 3 context menu items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text] | |
| @="Edit with &Sublime Text" | |
| "Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0" | |
| "MuiVerb"="Edit with Sublime Text" | |
| [HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text\command] | |
| @="C:\\Program Files\\Sublime Text 3\\sublime_text.exe \"%1\"" | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\Sublime] | |
| @="Open with Sublime Text" | |
| "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\Directory\shell\Sublime] | |
| @="Open with Sublime Text" | |
| "Icon"="C:\\Program Files\\Sublime Text 3\\sublime_text.exe,0" | |
| [HKEY_CLASSES_ROOT\Directory\shell\Sublime\command] | |
| @="\"C:\\Program Files\\Sublime Text 3\\sublime_text.exe\" \"%1\"" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From this SO answer: https://stackoverflow.com/a/39840076