저도 아쉬운 부분이라서 한번 살펴 보았습니다.
/plugins/FM_Modern/editor.js에 보면
case "Indent":
if(isWYSIWYG) {
this.execCommand("Indent", false, null);
this.trimContent();
}
break;
이렇게 된 데를 아래처럼 바꾸면 어떨까 합니다.
case "Indent":
this.command("Raw", "<div class=\"indent\">", "</div>");
this.trimContent();
break;