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

Java​Script Refactor

by s-a ALL

A Sublime Text Refactor Plugin for Javascript Code

Details

  • 2016.12.16.08.43.23
  • github.​com
  • github.​com
  • 8 years ago
  • 2 hours ago
  • 11 years ago

Installs

  • Total 47K
  • Win 25K
  • Mac 14K
  • Linux 8K
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 Jun 12
Windows 0 1 0 0 0 1 1 0 2 1 2 1 1 1 2 0 0 1 1 1 1 0 0 1 0 3 0 1 1 0 0 0 1 1 0 1 1 1 2 0 0 0 1 2 1 1
Mac 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 4 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0
Linux 0 0 0 0 0 0 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 0 0 0 1 2 0 0 1 0 0

Readme

Source
raw.​githubusercontent.​com

Javascript Refactor plugin for Sublime Text 2 and 3

Donate

Overview

  • Goto definition of a variable or function
  • Rename variable or function respecting its current scope
  • Introduce variable
  • Extract selected source to a new method

Preview

http://www.youtube.com/watch?v=P9K7mxWItPw

Installation

Use the Sublime Package Control and search for: “JavaScript Refactor”
or
Clone or download the git repository into your packages folder. In Sublime Text use “Preferences/Browse Packages” menu item to open this folder. The shorter way of doing this is:

Linux

git clone https://github.com/s-a/sublime-text-refactor.git ~/.config/sublime-text-2/Packages/sublime-text-refactor

Mac

git clone https://github.com/s-a/sublime-text-refactor.git ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/sublime-text-refactor

Windows

In an elevated command prompt or powershell (as Admin): git clone https://github.com/s-a/sublime-text-refactor.git "%APPDATA%\Sublime Text 2\Packages\sublime-text-refactor“ for Sublime Text 3: git clone https://github.com/s-a/sublime-text-refactor.git "%APPDATA%\Sublime Text 3\Packages\sublime-text-refactor

Dependencies

  • This Plugin makes heavy usage of Node.js. So it needs a local installation of http://nodejs.org
  • mocha (only for testing)

Usage

Goto Definition:
Select a keyword via double click or point the cursor to the keyword and choose “Goto Definition” from context menu.

Rename:
Select a keyword via double click or point the cursor to the keyword and choose “Rename” from context menu. The plugin will select all variables or function calls occurring in the source code including its declaration. After that you rename them all on the fly. The logic respects the variables or functions scope. So it should be safe to rename them all without thinking ;) .

Introduce Variable:
Select an Expression from source code or point the cursor to the desired position and choose “Introduce Variable” from context menu.

Extract Method:
Select the source code you want to extract into a new method and choose “Refactor / Extract methode” from context menu. This will extract the source code instantly to a new methode aka function. The plugin will manage undeclared variable usages and pass them within a single bundled JSON parameter to the new function. It also generates a sample function call at the bottom of the new methode. The plugin marks all variables occurring in the source code so you can rename them on the fly.

Run the tests

Goto Pluginfolder and type npm test

You can find current test cases here
https://github.com/s-a/sublime-text-refactor/blob/master/js/test/

Troubleshoot

  • Node not found
    • Choose Preferences: Refactor Settings – User from context menu and configure the nodePath setup. (Default Value is node)

{ "nodePath" : "node" }

Todo

  • Extract method
  • Define exceptions of global scoped variable names like jQuery or $.
  • Do not pass variables available in current Scope (optional).
  • Let the user choose a function name before or after extraction.
  • Let the user choose a custom position to insert extracted methode code and indent it correctly.

License

MIT and GPL license.

Copyright © 2013 Stephan Ahlf stephan@ahlf-it.de

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.