This plug-in adds two toolbar buttons to the Java editor:
- Swap backward
- Swap forward
Usage
With the caret at | in:
void method(int iii, String |sss, boolean bbb){}pressing the Swap forward button yields:
void method(int iii, boolean bbb, String |sss){}or pressing Swap backward button with the original source yields:
void method(String |sss, int iii, boolean bbb){}
You can download the plug-in from here. TODO
- Key bindings for the actions
- Generalization of the concept to other language editors
DISCLAIMER: This plug-in is experimental. So no guarantees. Use the plug-in at your own risk.
No comments:
Post a Comment