Skip to content

Instantly share code, notes, and snippets.

View paulojunior95's full-sized avatar

Paulo Júnior paulojunior95

View GitHub Profile

Keybase proof

I hereby claim:

  • I am paulojunior95 on github.
  • I am paulojunior95 (https://keybase.io/paulojunior95) on keybase.
  • I have a public key ASAHKYYA79XmEvjKsuDUPCQd5jY4auFbQv8H3IctjjxC4wo

To claim this, I am signing this object:

@paulojunior95
paulojunior95 / OpenWithSublimeText3.bat
Created June 12, 2017 19:48 — forked from roundand/OpenWithSublimeText3.bat
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 7)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f