For a code
int some;
public int getSome () {
return some;
}
public void setSome (final int xxx) {
this.some = xxx;
}
if someone wants to rename parameter xxx to 'some' with Shift+F6, IDEA does not suggest an option 'some'. - actually, it suggest only 'i'
However, if cursor is moved to beginning of 'xxx' and Ctrl+Space is pressed, there will be option 'some'.
It would be nice if IDEA suggested 'some' in the list of options for Shift+F6