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

eco

by davidjrice ALL

Syntax highlighting for Eco (Embedded CoffeeScript) Templates in Sublime Text 2

Details

  • 2013.02.01.14.22.56
  • github.​com
  • github.​com
  • 11 years ago
  • 2 hours ago
  • 12 years ago

Installs

  • Total 7K
  • Win 1K
  • Mac 4K
  • Linux 1K
May 9 May 8 May 7 May 6 May 5 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
Windows 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 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 1 0 0 0 0 0 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 1 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Syntax highlighting for Eco Embedded CoffeeScript Templates in Sublime Text 2

It is based on an edited version the HTML (RAILS) Syntax from the rails textmate bundle.

Installation

The following instructions are temporary until sublime-eco is added to the package control source repository.

  • Hit command+shift+p and type "Package Control: Add Repository" and hit return
  • Enter https://github.com/davidjrice/sublime-eco.git in the sublime console that appears and hit return.
  • Now the repository is available, follow the rest of the instructions below to install the package.

The following instructions will be all that's necessary after sublime-eco is available through package control directly.

  • Hit command+shift+p and type "Package Control: Install Package" and hit return
  • Type “eco”, this package should appear in the dropdown, select it from the list and hit return

Optional

To get “Textmate ERB Style” opening and closing of ECO blocks. You will also want to;

You should then open your Preferences -> Keybindings - User and add the key binding for the ERB command.

The simple option is to allow this command in any file.

[
  { "keys": ["ctrl+shift+."], "command": "erb" }
]

However if you're like me you may want to restrict the key binding to those files where it makes sense to have that command. (Note the added text.html.eco at the end of the string)

[
  { "keys": ["ctrl+shift+."], "command": "erb", "context":
    [
      { "key": "selector",
        "operator": "equal",
        "operand": "text.html.ruby, text.haml, source.yaml, source.css, source.scss, source.js, source.coffee, text.html.eco" }
    ]
  }
]
`