Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 3, how to add to right click?

Tags:

sublimetext3

How do I add Sublime Text just like how Edit with Notepad++ is there it's nothing big but it saves time.

enter image description here

like image 917
Manieri Avatar asked Oct 03 '16 20:10

Manieri


People also ask

How do I add edits to Sublime Text?

Just double click on the file to add the entries into your registry. You can always edit and delete those entry by pressing window+r and then write regedit in that panel. There you will see the same path structure, e.g. HKEY_CLASSES_ROOT\*\shell for right click commands.

How do I open a folder in Sublime Text 3?

The fix in the first instance is to select View > Side Bar > Show Side bar from the menu, select View: Toggle Side Bar from the command palette, or press Ctrl+K Ctrl+B .

How do I display the menu in Sublime Text 3?

You can simply press "alt+v" ,you will see menu bar then click "show menubar".


1 Answers

  1. Create a new text document with notepad and save it on your desktop
  2. Rename it to OpenWithSublime.bat
  3. Put this inside:

@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  @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3"         /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f  @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f  pause    rem add it for right click on explorer  @reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\Sublime"         /t REG_SZ /v "" /d "Open with Sublime Text 3"   /f  @reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\Sublime"         /t REG_SZ /v "Icon" /d "%st3Path%" /f  @reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\Sublime\command" /t REG_SZ /v "" /d "%st3Path% \"%%V\"" /f  pause
  1. Run it as Administrator

Source: https://gist.github.com/roundand/9367852

like image 75
Lucas Bustamante Avatar answered Oct 04 '22 12:10

Lucas Bustamante