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

Meteor Snippets

by mrtnbroder ALL

Sublime Text Snippets for the Meteor Framework

Details

  • 0.9.4
  • github.​com
  • github.​com
  • 10 years ago
  • 27 minutes ago
  • 11 years ago

Installs

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

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!