This is a lightweight Sublime Text 3 plugin that will extract and create a function from the highlighted text. It works in three steps:
- Highlight the text
- Select which type of function to create
- 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.
You can install JavascriptExtractFunction via Package Control.
- Press cmd/ctrl + shift + p to open the command palette.
- Type
Install packageand press enter. Then search forJavascriptExtractFunction
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."
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
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.