Sublime Forum

SublimeCMD, UberSelection, PowershellUtils

#1

github.com/SublimeText

.sublime-packages available for all packages.

All of them depend on AAAPackageDev.

New package:

SublimeCMD

A simple command processor for Sublime Text.

  • “Command line” to run commands, set options, etc.

    [code]set? tab_size

    prints value of tab_size to status bar

    set!? t*

    prints hierarchy of values for all settings starting with t* to a new view

    run:w echo hello:world

    runs named window command with given params

    run!? .

    shows all found commands (arg is ignored, but required)[/code]

  • Integration with PowershellUtils:
    Use prefixes ! and r!

    [code]!gps subl* | select -expandprop ws | %{$_/1mb}

    shows memory usage of sublime (probably) in mb in a new buffer

    r!"$pwd"

    inserts the working dir into the selected regions.[/code]

  • Integration with UberSelection
    Type commands normally.

    [code].,/^def /-1s/this/that/

    Replace this with that in range comprised from cursor to next match

    of ^def minus one line.[/code]

Updated packages:

PowershellUtils
* Ability to run commands and output to a separate buffer.

UberSelection
* Reversed search (for ranges) is faster and, more importantly, actually works.

0 Likes

#2

Hmm, it requires me to log in?

0 Likes

#3

Where exactly?

0 Likes

#4

Edited the organizations link. I think it was pointing to my Dashboard.

0 Likes

#5

Thanks :smile:

0 Likes