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

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.