json-emacs / json-mode

Major mode for editing JSON files with emacs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Indentation of objects inside an array

knu opened this issue · comments

json-mode does not indent objects inside an array properly.

Actual:

[
    {
    "key": "value"
}
]

Expected:

[
    {
        "key": "value"
    }
]

Thanks, just confirmed that the latest version fixed the problem.