Skip to content

shagabutdinov/sublime-run-macro-file-with-context

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

RunMacroFileWithContext

Allows to use context in sublime macro files.

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.

Usage

Whenever you want to use context in macro file change use "run_macro_file_with_context" command instead of regular "run_macro_file".

Example command:

{
  "command": "run_macro_file_with_context",
  "args": {
    "file": "Packages/User/macro/mymacro.sublime-macro",
  }
},

Example macro:

[
  {
    "command": "insert",
    "args": {
      "characters": ".",
    },
    "context": [
      {"key": "preceding_text_begin", "operator": "regex_contains", "operand": ".(?<!\\.)$"},
    ]
  },

  {
    "command": "insert",
    "args": {
      "characters": ";",
    },
    "context": [
      {"key": "following_text_end", "operator": "regex_contains", "operand": ";$"},
    ]
  },


]

Dependencies

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages