ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Uber​Selection

by SublimeText ST2

Commands to extend the functionality of Sublime Text's multiselection.

Details

  • 2011.04.25.09.37.53
  • github.​com
  • github.​com
  • 13 years ago
  • 1 hour ago
  • 12 years ago

Installs

  • Total 1K
  • Win 568
  • Mac 378
  • Linux 162
Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Uberselection

Make complex selections and replace text in a buffer via textual commands. Inspired in Vim's line-oriented ex mode.

Getting Started

If you're running a full installation, simply doubleclick on the .sublime-package files. If you're running a portable installation, perform an installation by hand.

Usage

  1. Run from Sublime's console with view.run_command("uber_selection")
  2. Issue command as explained further below

Examples

10,20V/this/
Select lines containing this between lines 10 and 20 (inclusive).
.,.+20-V/this/
Select lines not containing this from the current line to 20 lines down from it.
%s/this/that/
Replace this with that in the whole file.

Four Ways of Issuing Commands

  1. <SUBLIME COMMAND>[ <ARG>]
  2. <LINE REF>[,<LINE REF>]
  3. <BUFFER COMMAND>[;<BUFFER COMMAND>]*
  4. <LINE REF><BUFFER COMMAND>[;<BUFFER COMMAND>]*

All tokens are explained in the following sections

Tokens

Sublime Commands

(Not all commands work.)

w [arg]
Save the active buffer. If you pass an arg to it, the Save As dialog will show up. At the moment, the passed arg is ignored.
wall
Save all opened buffers.
wq
Save the active buffer and exit.
ZZ
Save the active buffer and exit.
ls
Show list of opened views.
e
Show list of files in current directory.
q
Exit.
n
Next view.
N
Previous view.

Line References

Select lines or ranges of lines in the active view.

[1-9]+
Designates line by number.
.
Desigates the current line (first cursor in selection).
$
Designates the last line in the view.
%
Designates all lines in the view.
/what/
Looks forwards to find first line matching what or returns current line if none found.
?what?
Looks backwards to find first line matching what or returns current line if none found.

You can also specify offsets with [+-][1-9]+.

In order to designate a range, use two comma separated line references:

.+5,/end$/-3

Text Commands

Select lines and perform replacements in the view.

V/what/<flags>
Selects all lines containing what. Case insensitive by default. Use the flag c to make a case-sensitive search.
-V/what/<flags>
Same as above, but excludes the lines matching what.
s/what/with/
Replaces all instances of what with with. Case sensitive. The separator / can be substituted by any of: ! $ % & = / : ;

You can chain commands by separating them with a semicolon (;):

.+5,/end$/-3V/foo/;-V/bar/;s/foo/BOO!/