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 344
  • Linux 361
Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16
Windows 0 0 0 0 1 0 1 0 0 0 0 0 0 2 0 0 1 0 0 0 0 2 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0
Linux 0 0 1 0 0 1 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 1 0 0 0 0 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.