Last active
November 15, 2016 02:32
-
-
Save newpain01/60192342dd35b5ad0b5f25d6c8c92d63 to your computer and use it in GitHub Desktop.
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 7)
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 | |
; For folders. | |
[HKEY_CLASSES_ROOT\Directory\shell\sublime] | |
@="&Open folder 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\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\sublime] | |
@="&Open folder 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\"" | |
; For files. | |
[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\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment