代碼:如何讓IntelliJ IDEA使用多行屬性正確縮進xml標籤?
| - 插入符
<element attr1="1"
attr2="2"
attr3="3">|</element>
我所期望的壓制後,看到進入:
<element attr1="1"
attr2="2"
attr3="3">
|
</element>
我居然得到:
<element attr1="1"
attr2="2"
attr3="3">
|
</element>
IntelliJ IDEA的CE 11.1
謝謝你的任何建議!
看看File-> Settings-> Project Settings-> Code Style-> XML。它在那裏看起來好嗎? – Simon
那裏一切都很好。而Code-> Reformat Code也能正常工作(使代碼看起來像預期的那樣)。 – undles