SproutCore Snippets and JSHint Integration
A SproutCore package for Sublime Text 2
Details
Installs
- Total 2K
- Win 1K
- Mac 517
- Linux 220
Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 1 | 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 | 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 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
sublime-text-package
A SproutCore package for Sublime Text 2 and 3.
This package includes several useful SproutCore specific snippets and integration with JSHint.
To use this package you must first install jshint
and ensure that jshint
is in your environment path.
Install node-jshint using npm
$ npm install -g jshint
Install the SproutCore package using Package Control in Sublime Text
⇧⌘P
or⇧⌃P
(Linux/Windows)- select
Package Control: Install Package
- select
SproutCore
JSHint
This package runs jshint
on all JavaScript files on every save. This allows you
to catch errors early before going to the browser and testing. It also allows
you to catch potentially dangerous code like implied globals and redeclared
variables.
JSHint also enforces a very standard clean style of JavaScript, which is what the SproutCore framework adheres too. While you may initially find the style warnings to be annoying, following them is easy and in the end it makes for easily recognizable and shareable code.
As part of the JSHint integration, this package also includes a default .jshintrc file that it uses to add the SproutCore specific globals.
Snippets
There are several snippets available to significantly reduce the amount of
typing you need to do. To use a snippet, start typing the keyword and select
the appropriate snippet to insert useful predefined code. You can then use
the tab
key to jump between the configurable aspects of the snippet to
modify it very quickly without using the mouse.
SCButtonView
- An SC.ButtonView template.SCLabelView
- An SC.LabelView template.SCListView
- An SC.ListView template.SCRecord
- An SC.Record template with several attributes and aprimaryKey
.SCState
- An SC.State template with enterState and exitState.SCScrollView
- An SC.ScrollView template.SCTextFieldView
- An SC.TextFieldView template.SCView
- An SC.View template.SCView (Class)
- An SC.View as a Class template with render and update.SCBinding
- A oneWay binding.childViews
- Adds childViews property.childViewLayout
- Adds childViewLayout & childViewLayoutOptions properties.for
- A forwardfor
loop using.get('length')
&.objectAt()
for
- A reversefor
loop using.get('length')
&.objectAt()
function (observes)
- A .observes function.function (property)
- A .property function.function (cacheable)
- A .property.cacheable function.