Description
Select text and perform search and replace operations via text commands. Inspired in Vim’x ex mode.
Examples
10,30-V/flick/;s/li/u/
…means:
Replace ‘li’ with ‘u’ in every line (from the 10th to the 30th) where “flick” doesn’t match.
How to use
#from Sublime's python console
view.runCommand("uberSelection")
Get it
bitbucket.org/guillermooo/uberselection/
Misc
If you don’t know it, pyparsing.wikispaces.com/ is a pretty neat module!