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

Meteor Snippets

by mrtnbroder ALL

Sublime Text Snippets for the Meteor Framework

Details

Installs

  • Total 17K
  • Win 5K
  • Mac 7K
  • Linux 4K
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 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 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 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 1 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

Meteor Snippets for Sublime Text 2/3

Some snippets for working with the Meteor framework (v1.0).

Includes snippets for

  • CoffeeScript (✔)
  • HTML (✔)
  • JavaScript (✔) - Updated to 1.0

Installation

You can install them now via Package Control (search for “Meteor Snippets”) or manually via git:

OS X
git clone git://github.com/mrtnbroder/meteor-snippets.git "~/Library/Application Support/Sublime Text 2/Packages/Meteor Snippets"
Linux
git clone git://github.com/mrtnbroder/meteor-snippets.git "~/.config/sublime-text-2/Packages/Meteor Snippets"
Windows
git clone git://github.com/mrtnbroder/meteor-snippets.git "%userprofile%\AppData\Roaming\Sublime Text 2\Packages\Meteor Snippets"

Examples

tp

<template name='main'>
    ...
</template>

Meteor.render

Meteor.render(function () {
    ...
});

Meteor.publish

Meteor.publish('name', function () {
    ...
});

if

Error: language “handlebars” is not supported
{{#if guyIs 'male'}}
    ...
{{/if}}

ea

Error: language “handlebars” is not supported
{{#each player}}
    ...
{{/each}}

… and a whole lot more!

Todo's

  • remap some tab triggers
  • fix some snippets (missing semicolons, whitespace, tab behaviour etc.)

Contributing

Got some neat Meteor snippets you want to share? fork this repro and send me a pull request!