textmate / json.tmbundle

TextMate support for JSON
122 stars 26 forks source link

inserts new line if "," is within string value #3

Closed fetzig closed 13 years ago

fetzig commented 13 years ago

this:

{"subtitle": "testy, test"}

becomes:

{
    "subtitle": "testy,
    test"
}

should be:

{
    "subtitle": "testy, test"
}
infininight commented 13 years ago

Fixed by [fbb2dcd].

fetzig commented 12 years ago

works like a charm :)

thx