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

Installs

  • Total 391
  • Win 212
  • Mac 127
  • Linux 52
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
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 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 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 1 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.