I would like a feature that reverses the two "things" in a selection. The
"things" can be characters, words, lines, arguments, etc. (and IDEA would
have to figure out what "things" I've selected so it knows how to reverse
them). Some examples:
1. Characters:
ab --> ba
2. Words:
hello there --> there hello
3. Lines:
int a = 10;
int b = 20;
-->
int b = 20;
int a = 10;
4. Items in a list (like arguments & parameters):
foo, bar --> bar, foo
String name, Object value --> Object value, String name
5. Methods:
public void foo() {
blah();
}
public void bar() {
blech();
}
-->
public void bar() {
blech();
}
public void foo() {
blah();
}
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features