-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:hgraca/sublime-text-2-php-refactor
- Loading branch information
Showing
10 changed files
with
114 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
1.2.0 | ||
===== | ||
* Implementation of: | ||
* Rename Local Variable | ||
* Convert Local Variable To Instance Variable | ||
|
||
1.0.0 | ||
===== | ||
* Initial Version | ||
* Implementation of: | ||
* Extract method |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
[ | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+1"], "command": "extract", "args": {"execute": false} }, | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+2"], "command": "extract", "args": {"execute": true} } | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+2"], "command": "extract", "args": {"execute": true} }, | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+3"], "command": "renamelocalvariable", "args": {"execute": false} }, | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+4"], "command": "renamelocalvariable", "args": {"execute": true} }, | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+5"], "command": "convertlocalvariabletoinstancevariable", "args": {"execute": false} }, | ||
{ "keys": ["ctrl+shift+r", "ctrl+shift+6"], "command": "convertlocalvariabletoinstancevariable", "args": {"execute": true} } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"install": "messages/install.md", | ||
"1.0.0": "messages/1.0.0.md" | ||
"1.2.0": "messages/1.2.0.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
New on 1.2.0 | ||
============ | ||
* Implementation of: | ||
* Rename Local Variable | ||
* Convert Local Variable To Instance Variable | ||
|
||
|
||
If you have any questions or found a bug fell free to contact me at [email protected] | ||
|
||
For bugs open an issue on github https://github.com/hgraca/sublime-text-2-php-refactor/issues | ||
|
||
Hope you enjoy it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.