Fix setting file format

This commit is contained in:
TheSecEng 2021-06-28 12:45:45 -07:00
parent aaaa457475
commit a6e18b1cff
No known key found for this signature in database
GPG Key ID: 4D98046FE19FF417
4 changed files with 30 additions and 26 deletions

View File

@ -24,12 +24,12 @@
"command": "pretty_json_validate"
},
{
"caption": "Preferences: Pretty JSON Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Pretty JSON/Pretty JSON.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
"caption": "Preferences: Pretty JSON Settings",
"command": "edit_settings"
}
]

View File

@ -1,25 +1,29 @@
[
{
"id": "preferences",
"children": [
{
"id": "package-settings",
"children": [
{
"caption": "Pretty JSON",
"children": [
{
"caption": "Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Pretty JSON/Pretty JSON.sublime-settings",
"default": "{\n\t$0\n}\n",
}
},
{
"caption": "-"
}]
}]
}]
}]
"children": [
{
"caption": "Pretty JSON",
"children": [
{
"args":
{
"base_file": "${packages}/Pretty JSON/Pretty JSON.sublime-settings",
"default": "{\n\t$0\n}\n"
},
"caption": "Settings",
"command": "edit_settings"
},
{
"caption": "-"
}
]
}
],
"id": "package-settings"
}
],
"id": "preferences"
}
]