Skip to content

Instantly share code, notes, and snippets.

@chalubhalu
Created January 4, 2016 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chalubhalu/b374f87a4a7e84652b05 to your computer and use it in GitHub Desktop.
Save chalubhalu/b374f87a4a7e84652b05 to your computer and use it in GitHub Desktop.
Add "Edit with Sublime Text 3" to Windows Context Menu for all file types and folders (Along with Sublime Text Icon)
@echo off
SET exPath=C:\Program Files\Sublime Text 3\sublime_text.exe
rem For all File Types
@reg add "HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text 3" /t REG_SZ /v "" /d "Edit with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%exPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text 3\command" /t REG_SZ /v "" /d "%exPath% \"%%1\"" /f
rem For Folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Edit with Sublime Text 3" /t REG_SZ /v "" /d "Edit with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Edit with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%exPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Edit with Sublime Text 3\command" /t REG_SZ /v "" /d "%exPath% \"%%1\"" /f
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment