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

Iifefy

by erquhart ALL

Sublime Text 3 plugin for wrapping Javascript code in IIFE's

Details

  • 1.1.9
  • github.​com
  • github.​com
  • 10 years ago
  • 48 minutes ago
  • 10 years ago

Installs

  • Total 398
  • Win 216
  • Mac 130
  • Linux 52
Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7
Windows 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 1 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

iifefy

A Sublime Text 3 plugin for wrapping Javascript code in immediately invoking function expressions.

Installation

Using Package Control (Recommended)

For all Sublime Text 2/3 users we recommend install via Package Control.

  1. Install Package Control if you haven't already
  2. Use cmd+shift+P (or ctrl+shift+P for Windows) then select Package Control: Install Package
  3. Search for iifefy and select to install

Manual Install

  1. Click the Preferences > Browse Packages… menu
  2. Browse up a folder and then into the Installed Packages/ folder
  3. Download the zip archive, rename it to Iifefy.sublime-package and copy it into the Installed Packages/ directory
  4. Restart Sublime Text

Usage

This plugin provides two commands:

iifefy: Wraps each current selection in an IIFE. If nothing is selected it wraps the entire document.

iifefy_skip_initial_comments: Same as iifefy, except it begins wrapping at the first non-comment, non-blank line. This is useful for certain per-file configuration comments, which some prefer to keep as the opening line.

Both of these commands add 'use strict'; and a trailing newline to each IIFE by default, but you can change the opening and closing strings that form the IIFE to whatever you like under Preferences > Package Settings > iifefy > Settings - User.

The commands themselves are accessible directly in the context menu and from the Edit > Wrap submenu. Keyboard shortcuts can be added by going to Preferences > Key Bindings - User and adding the following to the file, replacing the key values with your preferred shortcuts:

{ "keys": [ "ctrl+i" ], "command": "iifefy", "context":
    [{ "key": "selector", "operator": "equal", "operand": "source.js", "match_all": true }]
},
{ "keys": [ "ctrl+shift+i" ], "command": "iifefy_skip_initial_comments", "context":
    [{ "key": "selector", "operator": "equal", "operand": "source.js", "match_all": true }]
}

Contributing

  1. Fork the repository
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request

License

Code copyright 2014 Professant LLC. Code released under the MIT License.