Using ctrl-w we now can select progressively wider blocks of code. A great addtion to this would be to check for a matching setter/getter pair when selection a wider block from a method. If we have this block selected:
public void setMyInt(int myint) {
this.myInt = myint;
}
and this block is adjacent in the code:
public void getMyInt() {
return myInt;
}
then when we hit ctrl-w it should widen the selection to select both of these blocks, but not the entire class. Very often using alt-insert or "create getter method" intention, the setter/getter pair is put in the wrong spot in the file and I would like to easily select it and move it (say with ctrl-shift-up/down). This would make that easier!