forked from dzhibas/SublimePrettyJson
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
40 lines (40 loc) · 1.02 KB
/
Default.sublime-commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[
{
"caption": "Pretty JSON: Format (Pretty Print) JSON",
"command": "pretty_json"
},
{
"caption": "Pretty JSON: Format and Sort JSON",
"command": "pretty_json_and_sort"
},
{
"caption": "Pretty JSON: Minify (compress) JSON",
"command": "un_pretty_json"
},
{
"caption": "Pretty JSON: JSON 2 XML",
"command": "json_to_xml"
},
{
"caption": "Pretty JSON: JSON query with ./jq",
"command": "jq_pretty_json"
},
{
"caption": "Pretty JSON: Validate",
"command": "pretty_json_validate"
},
{
"caption": "Preferences: Pretty JSON Settings - User",
"command": "open_file", "args":
{
"file": "${packages}/User/Pretty JSON.sublime-settings"
}
},
{
"caption": "Preferences: Pretty JSON Settings - Default",
"command": "open_file", "args":
{
"file": "${packages}/Pretty JSON/Pretty JSON.sublime-settings"
}
}
]