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

YAMLMacros

by Thom1729 ALL

A macro system for YAML files powered by Python. Intended for Sublime Text development.

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

NOTE: YAML Macros 3.0.0 has been released. All pre-existing functionality should be stable; however, some new features may be in flux. See the release notes for more details.

YAML Macros

A macro system for YAML files powered by Python. Designed for Sublime Text syntax development.

Installation

YAML Macros can be installed via Package Control. You can also git clone this repository into your packages directory. If you do, rename it to “YAMLMacros”.

Overview

Sublime Text syntax definitions can often have a lot of boilerplate and repeated code. Consider this simple syntax that highlights SQL keywords:

%YAML 1.2
---
name: SQL Simple (YAML Macros example)
scope: source.sql
contexts:
  main:
  - match: \b(?i:select|from|where)\b
    scope: keyword.control.sql

  - match: \b(?i:distinct|as)\b
    scope: keyword.operator.word.sql

  - match: \b(?i:dual)\b
    scope: constant.language.sql

The same construct \b(?i:…)\b is repeated over and over. This can be tedious to write and annoying to read, and in a full, complex SQL syntax with a dozen or more similar matches, it's not unlikely that a hard-to-spot typo will lead to a hard-to-detect bug, such as a keyword only working in lowercase. With YAML Macros, you can DRY up your syntax by factoring out common idioms:

%YAML 1.2
%TAG ! tag:yaml-macros:sql_simple_macros:
---
name: SQL Simple (YAML Macros example)
scope: source.sql
contexts:
  main:
    - match: !word select|from|where
      scope: keyword.control.sql

    - match: !word distinct|as
      scope: keyword.operator.word.sql

    - match: !word dual
      scope: constant.language.sql

Then, in sql_simple_macros.py:

def word(str):
    return r'\b(?i:%s)\b' % str

It's as simple as that! For a more complex use case that uses a number of macros, see the full SQL example.

Usage

Importing macros

To import macros into your YAML file, add a %TAG directive at the top referencing the file containing your macros. The syntax is as follows:

%TAG <tag handle> tag:yaml-macros:<macro package>:

<tag handle> is the prefix you will use to invoke your macros. It must begin with an exclamation point. <macro package> is path to your macro definitions file. You can use multiple macro definitions files; simply write two %TAG directives with different tag handles.

Invoking macros

You may invoke a macro anywhere in your YAML file a value is expected:

<tag handle><macro name> <value>

Examples:

!word select
!expect [ ';', 'punctuation.terminator.statement.sql' ]

Note that there is no space between the tag handle and the name of a macro.

Defining macros

A macro definitions file is any Python module. It may be as simple as a single function definition or as complex as you like. If Python can do it, you can put it in a macro.

If a macro is applied to a YAML list, each list item will be passed as an argument. If a macro is applied to a YAML dictionary, each item will be passed as a keyword argument. Otherwise, the macro will receive a single value.

Applying your macros

If you have named your file with a .yaml-macros extension, simply select the “YAML Macros” build system. Running the build will create a compiled YAML file at the same location without the extra .yaml-macros suffix.

Command line interface

There is a basic command line interface. The CLI expects your YAML Macros file as standard input and will send the compiled YAML file to standard output. Paths will be resolved relative to your working directory.