Is there a way to make eclipse simulate Intellij statement-wise ctrl+shift+up ctrl+shift+down line movement? (like changing indentation, or moving code blocks)?
UPD, beg my pardon, alt up/down indeed changes indentation. But what about next:
@Override
protected void onStart() {
super.onStart();
if(currentPath == null || currentPath.length() == 0) {
showDirectoryView(settings.getRootUri());
}
}
cursor stands on method declaration, I use alt down
@Override
super.onStart();
protected void onStart() {
if(currentPath == null || currentPath.length() == 0) {
showDirectoryView(settings.getRootUri());
}
}
Intellij just swaps this method with the next one,
same about code blocks
ALT + Up/Down Arrow– for rows indentation in Eclipse.This will select more rows and move them all.