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

Impact​JS

by drhayes ALL

A package for doing ImpactJS development in Sublime Text 2.

Details

  • 2015.12.08.20.18.52
  • github.​com
  • github.​com
  • 9 years ago
  • 2 hours ago
  • 13 years ago

Installs

  • Total 739
  • Win 360
  • Mac 283
  • Linux 96
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 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 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

ImpactJS for Sublime Text 2

A collection of snippets and shortcuts for doing ImpactJS development in Sublime Text 2.

Issues and pull requests welcome! I don't use Sublime these days so I'm less aware of the little daily pains that using this package can cause. Please let me know if there's something missing that you want and we'll work to get it in here.

Install

Please use Package Control to install the ImpactJS plugin for Sublime Text 2. Everything else would just be terrible.

Usage

This package is careful to not steal your JS syntax away from you. To use this package in Sublime you must switch the syntax of your current file from “JavaScript” to “ImpactJS”.

By default, you can press CTRL - SHIFT - P to pull up the syntax chooser.

Snippets

I really love TAB completion snippets. Once your syntax is switched (see above), you can type the shortcuts below, hit TAB, and the snippet should expand in place.

See the Sublime documentation for “Snippets” for more info.

igm

Define an Impact module. By default, the snippet defines the module with a 'use strict'; expression to force JS into strict mode. Trust me, you want this. But it does mean that your definitions probably have to be declared with a window in front of them. For example:

window.EntityPlayer = ig.Entity.extend({});

ige

Define an Impact entity. As above, the module will be in strict mode.

Completions

This package knows about certain properties in Impact and will help you complete them by pressing CTRL - SPACE.

See the Sublime docs about “Completions” for more info.

Entity

All the Entity properties and methods.

Keys

All the mouse and keyboard names.