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

ytt

by Vasfed ST3

SublimeText package for ytt syntax

Details

  • 0.0.1
  • github.​com
  • github.​com
  • 12 months ago
  • 42 minutes ago
  • 12 months ago

Installs

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

Readme

Source
raw.​githubusercontent.​com

SublimeText ytt syntax higlighting

Simple syntax higlighting for Carvel tools ytt in Sublime Text.

Depends on YAML package that is included in ST. Starlark syntax and ApplySyntax(see usage) packages are highly recommended. Screenshot shows this syntax effect when Starlark is also installed (ytt uses starlark after #@).

highlight example

Installation

The recommended way is to use Package Control to automatically receive the latest updates and make the entire process much simpler.

Package Control Installation

(this should work once pull request is accepted to Package Control)

  1. Open Sublime Text and press Shift+Ctrl+P (Cmd+Shift+P on Mac).
  2. Type install and press enter.
  3. Another text box should appear, type ytt and you should see this plugin highlighted. Press Enter to install it.

Manual installation

  1. Download this Git Repository's master branch as a .zip file. (Or you can download the latest release.)
  2. Navigate to Preferences > Browse Packages... (or Settings -> Browse Packages...)
  3. Put the folder from the .zip into the location that was opened.
  4. Restart Sublime.

Usage

Use Set syntax: ytt to apply to current file.

Since ytt files are also yaml files default syntax detector will use that, so you can use ApplySyntax package with following rule added to syntaxes:

"syntaxes": [
        {
            "syntax": "User/ytt/ytt",
            "match": "all",
            "rules": [
                { "file_path": ".*\\.ya?ml$" },
                { "contains": "\\s*#@" }
            ]
        }
    ]