IdeaVIMのJoin LinesをIDEAのソレ(Smart Join)に差し替える

ここ書き換えればOK。

public class DeleteJoinLinesSpacesHandler extends ChangeEditorActionHandler {
  public boolean execute(Editor editor, DataPackage context, int count, int rawCount, Argument argument) {
    if (editor.isOneLineMode()) {
      return false;
    }

// ↓ この1行をコメントアウトして,
//    return CommandGroups.getInstance().getChange().deleteJoinLines(editor, context, count, true);
// ↓ この2行を追加する
    KeyHandler.executeAction("EditorJoinLines", context);
    return true;
  }
}

IdeaVIMよりIDEAのJoin Linesのほうが性能がよいので,満足じゃ。