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

Sublime​Enhanced​Utilities​Set

by shagabutdinov ALL

Minor utilities for building snippets and plugins

Details

Installs

  • Total 32K
  • Win 20K
  • Mac 7K
  • Linux 5K
Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20
Windows 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 1 1 0 0 0 0 2 0 1 0 3 1 0 3 0 0 1 0 1 0 0 1 0 2 0 0 0 0
Mac 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 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 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime Utilities plugin

Minor utilities for building snippets and plugins.

Installation

This plugin is part of sublime-enhanced plugin set. You can install sublime-enhanced and this plugin will be installed automatically.

If you would like to install this package separately check “Installing packages separately” section of sublime-enhanced package.

Features

  • “replace_region” - replace given region with given text; arguments: region ([start, end]) - region to replace, text (string) - string to put to region.

  • “replace_text_by_regexp” - replace text from start of line to begin of selection by given regexp; arguments: regexp (string) - expression to hit, replacement (string) - string to put instead of matched (backreferences \1 are supported); if no regexp matches no replacemenet will be made.

  • “insert_text” - insert text to given point; arguments: point (int), text (string)

  • “delete_selection” - delete selected region; arguments: none

Usage

Run commands listed above from keyboard shortcut, macro-file, snippet or other plugin.

Example keymap:

{
    "keys": ["ctrl+f5"],
    "command": "insert_text",
    "args": {
      "point": 0,
      "text": "<?php"
    }
  }