Skip to content

Instantly share code, notes, and snippets.

@fernandosavio
Last active May 24, 2018 19:30
Show Gist options
  • Save fernandosavio/be41a88f533b6e63b37851921073455b to your computer and use it in GitHub Desktop.
Save fernandosavio/be41a88f533b6e63b37851921073455b to your computer and use it in GitHub Desktop.
Add "Open with Sublime Text 3" to files and folders context menu on Windows. (Tested on Windows 8.1)
@echo off
SET st3Path=%PROGRAMFILES%\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "\"%st3Path%\"" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Sublime Text\command" /t REG_SZ /v "" /d "\"%st3Path%\" \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "\"%st3Path%\"" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Sublime Text\command" /t REG_SZ /v "" /d "\"%st3Path%\" \"%%1\"" /f
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment