File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -613,14 +613,24 @@ code to call it instead.
613613 let g:pymode_rope_use_function_bind = '<C-c>ru'
614614
615615
616- Move method/fields ~
616+ Move refactoring ~
617617 *pymode-rope-move*
618618
619+ Moving method/fields
620+
619621It happens when you perform move refactoring on a method of a class. In this
620622refactoring, a method of a class is moved to the class of one of its
621623attributes. The old method will call the new method. If you want to change all
622624of the occurrences of the old method to use the new method you can inline it
623625afterwards.
626+
627+ Moving global variable/class/function into another module
628+
629+ It happens when you perform move refactoring on global variable/class/function.
630+ In this refactoring, the object being refactored will be moved to a destination
631+ module. All references to the object being moved will be updated to point to
632+ the new location.
633+
624634>
625635 let g:pymode_rope_move_bind = '<C-c>rv'
626636
You can’t perform that action at this time.
0 commit comments