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

Java​Script​Extract​Function

by tricinel ST3

A lightweight plugin for Sublime Text 3 to extract a function from a selected piece of Javascript code

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

Javascript Extract Function

This is a lightweight Sublime Text 3 plugin that will extract and create a function from the highlighted text. It works in three steps:

  1. Highlight the text
  2. Select which type of function to create
  3. Name your function

Your text will be wrapped into a new Javascript function, depending on what you selected and called right afterwards. You can either automatically paste the new function right in the file, or copy it to clipboard and paste it wherever you like.

Installation

You can install JavascriptExtractFunction via Package Control.

  1. Press cmd/ctrl + shift + p to open the command palette.
  2. Type Install package and press enter. Then search for JavascriptExtractFunction

Usage

To run the Javascript Extract Function command… open the Sublime Text Command Palette and type “Extract Javascript Function.”

You can also right-click on a selected piece of code in a file to bring up the Context Menu and select “Extract Javascript Function.”

Key Bindings

The plugin adds two key bindings that you can use as shortcuts.

  • alt + m will ask you to select what type of function to extract your function into
  • shift + alt + m will automatically extract an arrow function and paste it into your code

Limitations

This plugin does not currently support multiple selections. If you select more than one block, only the first one will be used in function creation.