有没有办法让eclipse模拟Intellij语句,按Ctrl + Shift +上移Ctrl + Shift +下移行? (例如更改缩进或移动代码块)?

请原谅,UPD向上/向下确实改变了缩进。但是接下来呢:

@Override
protected void onStart() {
    super.onStart();
    if(currentPath == null || currentPath.length() == 0) {
        showDirectoryView(settings.getRootUri());
    }
}


光标停留在方法声明上,我使用alt down

@Override
    super.onStart();
protected void onStart() {
    if(currentPath == null || currentPath.length() == 0) {
        showDirectoryView(settings.getRootUri());
    }
}


Intellij只是将这种方法与下一种互换,
关于代码块也一样

最佳答案

ALT + Up/Down Arrow-用于Eclipse中的行缩进。

这将选择更多行并将其全部移动。

07-28 00:15