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

Py​Refactor

by dnatag ALL

Python refactoring tool for Sublime Text

Details

  • 2015.09.23.02.09.05
  • github.​com
  • github.​com
  • 9 years ago
  • 2 hours ago
  • 10 years ago

Installs

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

Readme

Source
raw.​githubusercontent.​com

Python refactoring made easy in Sublime Text 3

Introduction

This plugin is designed to help rope users to refactor python codes. It generates a temporary rope script, which refactors your codes, and then it reloads the refactored codes in Sublime Text. This is a quick and dirty hack and may not work well for very complex codes.

Refactor Methods Implemented

  1. Create a rope project (Ctrl+Shift+N): You must create the rope project first before performing any following refactoring actions.
  2. Undo last refactoring action (Ctrl+Shift+Z)
  3. Redo last refactoring action (Ctrl+Shift+Y)
  4. Rename a field
  5. Rename a module
  6. Transform a module to package with the same name
  7. Change the signiture of a function/method
  8. Extract method
  9. Extract variable
  10. Inline: Inline occurrences of a method/variable/parameter
  11. Change a local variable to field
  12. Introduce parameter to a function
  13. Introduce constructor factory (select a class name to perform the refactoring)
  14. Encapsulate field: Generate a getter/setter for a field and changes its occurrences to use them.
  15. Use function: Try to use a function whenever possible
  16. Move across module
  17. Move attribute
  18. Transform function to method object
  19. Restructure

Installation

Prerequisite: Install the rope package from PyPI.

  1. Automatic installation via Package Control. Search for PyRefactor under Package Control.
  2. Manual installation via github Clone the git repository directly into the Packages folder

    git clone git@github.com:dnatag/PyRefactor.git

Usage Guide

  1. Create a rope project in the project level (Ctrl+Shift+N)
  2. Use Cmd+Shift+P (Ctrl+Shift+P in Linux or Windows) and type Refactor to choose refactoring method
  3. Under Tools Menu and then submenu Refactor to choose proper refactoring method

Licence

You can use this under Simplified BSD License:

Copyright © 2014, Yi Xie All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.