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

Sublime​Magic

by mreq ALL

A magic command for sublime. Manage multiple commands with the same hotkey based on advanced contexts.

Details

Installs

  • Total 874
  • Win 595
  • Mac 170
  • Linux 109
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 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 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 0 0 0 0 0 1 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

★ SublimeMagic

A magic command for sublime. Create a spellbook, cast spells on your code, make magic happen.

What?

SublimeMagic provides a sublime_magic command, which looks through user-defined actions and performs the first matching one.

Use the spell hotkey!

Default keybind is alt + spacebar but you can set your own. To use the plugin, you have to bind the sublime_magic command.

Regular example:

{
  "keys": ["ctrl+,"],
  "command": "sublime_magic"
}

Vintageous example:

{
  "keys": [" ", " "],
  "command": "sublime_magic",
  "context": [{ "key": "vi_command_mode_aware" }]
}

Create your spellbook!

The spellbook (your sublime-settings file) consists of a single spells array containing the user-defined spells:

{
  "spells": []
}

The spells are iterated one-by-one and the first one matching the context conditions is casted. When there's no spell matching, nothing happens. When there are multiple matching spells, only the top-most one is performed.

Spell

Each spell consists of the following required fields:

Spells can be limited by settings a context (similar to key bindings, though not using the same syntax). Known context keys:

  • scope - an array of required scope names (using regexp) - all patterns must match
  • line_matches - an array of patterns that the current line must match
  • selection_empty - when true, some text has to be selected; when false, there must be no selection
  • selection_matches - an array of patterns that the currently selected text must match
  • need more? - make an issue, or even better a PR :)

Spell example

{
  "name": "Replace single quoted content with clipboard",
  "context": {
    "scope": ["string\\.quoted\\.single"]
  },
  "spell": "replace_text",
  "args": {
    "where": "inside",
    "delimiter": "'",
    "replacement": "$clipboard"
  }
}

Available spells

Example spellbook

Have a nice spellbook? Create a pull request and let me add a link here!

Spellbooks: + mreq

A simple example:

{
  "spells": [
    {
      "name": "Replace single quoted content with clipboard",
      "context": {
        "scope": ["string\\.quoted\\.single"]
      },
      "spell": "replace_text",
      "args": {
        "where": "inside",
        "delimiter": "'",
        "replacement": "$clipboard"
      }
    },
    {
      "name": "Replace double quoted content with clipboard",
      "context": {
        "scope": ["string\\.quoted\\.double"]
      },
      "spell": "replace_text",
      "args": {
        "where": "inside",
        "delimiter": "\"",
        "replacement": "$clipboard"
      }
    },
    {
      "name": "Replace content after colon with clipboard",
      "context": {
        "line_matches": [": "]
      },
      "spell": "replace_text",
      "args": {
        "where": "after",
        "delimiter": ": ",
        "replacement": "$clipboard"
      }
    }
  ]
}