Hello!
When I using SyntaxEditor and Web Lang Addon in case when I try to format function with arguments JSon or BSon structure like this:
db.bios.update( { _id: 1 }, { $set: { "name.middle": "Warner" } } )
I'll get
db.bios.update( {
_id: 1
}, {
$set: {
"name.middle": "Warner"
}
} )
But, it will be nice if format will be return something like this:
db.bios.update(
{ _id: 1 },
{ $set: { "name.middle": "Warner" }} )
Could you improve formatting code? I know, I can write my own code formatter, but it will be nice to get out-of-box this feature. :)
Thank you!