json-emacs / json-mode

Major mode for editing JSON files with emacs
314 stars 66 forks source link

Incorrect indentation for arrays of objects #77

Closed galdor closed 10 months ago

galdor commented 10 months ago

Indentation is incorrect for arrays of objects:

[
  {
  "a": 1
}
]

Expected:

[
  {
    "a": 1
  }
]
taku0 commented 10 months ago

This was fixed (https://github.com/json-emacs/json-mode/issues/72) but not released as a package. I have just released v1.9.0. Could you try it? You can try it from https://github.com/json-emacs/json-mode/releases/tag/v1.9.0 or Melpa.

galdor commented 10 months ago

This is indeed working properly on v1.9.0, thank you!