

Performing a regex find and replace is very simple in Sublime Text. In this case, the regex pattern can be used to find all the HTML tags in a document. Instead, you can perform the search with a single regex pattern. Regex is often used to locate similar (but different) text strings for text editing.įor example, if you wanted to strip all HTML tags from a document, it would be very time-intensive to search for each tag to delete (e.g. Regex, short for regular expression, is a syntax for specifying search patterns. While it is a great tool for developers, it’s also a powerful app for writers and bloggers.īefore we dive into all the features and capabilities of Sublime Text, let’s quickly walk through a few scenarios where Sublime Text may be useful.

The support is rapid and outstanding, and their servers are the fastest for WordPress.Īt its core, Sublime Text is akin to a Swiss Army knife that can be applied to any use case or problem involving manipulating Text.Īt first glance, Sublime Text may appear to be a text editor that’s only useful to developers. Kinsta is amazing, I use it for my personal website. Modify this as needed for Sublime Text 3 (or any future versions).Need to give a shoutout here. I added this to my PowerShell profile: Set-Alias subl 'C:\Program Files\Sublime Text 2\sublime_text.exe' bat file set to autorun with cmd) so I can type subl file.rb: > doskey subl="C:\Program Files\Sublime Text 2\sublime_text.exe" $*įor the default bash shell add an alias to your ~/.bashrc file, e.g: $ echo 'alias subl="/cygdrive/c/Program\ Files/Sublime\ Text\ 2/sublime_text.exe"' > ~/.bashrc

Solution 2 Windows Command Promptįor Windows cmd.exe you could just add the sublime text installation directory to your PATH environment variable, this would allow you to type: sublime_text file.rb Or you may as well modify your system PATH variable to include sublime's instalation folder, but I believe that is much more involved. You may then use in your terminal/console subl as a command to open whatever file, such as in your example: It is at sublime's installation folder: copy it in to a folder included in the system path. From build 3065 (Release Date: 29 August 2014) onwards Sublime text includes a command line helper, nameley subl.exe.
