Skip to content

dnatag/PyRefactor

Repository files navigation

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 (c) 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.

About

Python refactoring tool for Sublime Text

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors 4

  •  
  •  
  •  
  •