Sublime Text 3 Editor (Free Unregistered Version)


Attention! 👉Starting November 2024, BlitzCoder.org will now be BlitzBasic.org.

 

Tweet
BlitzCoder

A sophisticated text editor for code, markup and prose.

Quick Review: The free evaluation version is unregistered, without limitation but imposes a nag screen after a few saves and from time to time. If you run a company or business or would like to support the product development, it is recommended to buy and register.

https://forum.sublimetext.com/t/so-whats-stopping-me-from-using-the-evaluation-version-and-never-paying-for-it/31436/2

Download Page: https://www.sublimetext.com/3

Image

BlitzCoder commented:

Here's a regedit entry for opening folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 7/10)

@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

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

Reply To Topic (minimum 10 characters)

Please log in to reply