.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: Select all
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)
* Integration with PowershellUtils:
Use prefixes ! and r!
- Code: Select all
!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.
* Integration with UberSelection
Type commands normally.
- Code: Select all
.,/^def /-1s/this/that/
# Replace this with that in range comprised from cursor to next match
# of ^def minus one line.
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.
