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

Stack​Mob JS Snippets

by wyne ALL

StackMob JavaScript Snippets for Sublime Text Editor

Labels snippets

Details

  • 2013.04.23.17.49.14
  • github.​com
  • github.​com
  • 13 years ago
  • 40 minutes ago
  • 13 years ago

Installs

  • Total 258
  • Win 151
  • Mac 74
  • Linux 33
Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14 Feb 13 Feb 12 Feb 11 Feb 10 Feb 9 Feb 8 Feb 7 Feb 6 Feb 5 Feb 4 Feb 3 Feb 2 Feb 1 Jan 31
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 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

Sublime Snippets for StackMob JavaScript

This is a Sublime Text package which includes snippets for doing StackMob JavaScript development.

This is a work in progress and very new. Pull requests welcome.

Installation

1. Find Packages Directory

  • Mac cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/User
  • Windows: cd %APPDATA%\Sublime Text 2\Packages\User
  • Linux: cd ~/.Sublime\ Text\ 2/Packages or cd ~/.config/sublime-text-2/Packages
  • Portable: Sublime Text 2/Data/Packages

Can't find your packages? Open sublime and press ctrl + ` and type sublime.packages_path().

2. Download

$ git clone git@github.com:wyne/sublime-stackmob-js-snippets.git stackmob-js

Usage

In a javascript file or within a script tag in an html file, type sm as the start to one of the triggers below.

Trigger StackMob Method
smc object.create()
smn var object = new Object({property: “value”});
sminit StackMob.init()
sms object.save()
smmodel var Object = StackMob.Model.extend({ schemaName: “schema” });
smiuli StackMob.isUserLoggedIn()
smili StackMob.isLoggedIn()
smf object.fetch()
smfe object.fetchExpanded()
smcc StackMob.customcode()