1. mac intellij 코드정리 단축키

mac intellij 환경에서 코드를 정리하는 단축키는 아래와 같다.

1
option + command + L

코드 정리전

1
2
3
4
5
6
<table>
<tr>
<td>
asdasdfasdfdsf</td>
</tr>
</table>

코드 정리후

1
2
3
4
5
6
7
<table>
<tr>
<td>
asdasdfasdfdsf
</td>
</tr>
</table>
공유하기