-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMain.sublime-menu
More file actions
79 lines (79 loc) · 2.61 KB
/
Copy pathMain.sublime-menu
File metadata and controls
79 lines (79 loc) · 2.61 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[
{
"id": "tools",
"children": [
{
"caption": "xml2json",
"children": [
{
"caption": "xml2json",
"command": "xml2json"
},
{
"caption": "json2xml",
"command": "json2xml"
},
{
"caption": "xml2json (Save to file)",
"command": "xml2json_save"
},
{
"caption": "json2xml (Save to file)",
"command": "json2xml_save"
},
{
"caption": "Pretty JSON",
"command": "pretty_json"
},
{
"caption": "Pretty XML",
"command": "pretty_xml"
},
{
"caption": "Compact JSON",
"command": "compact_json"
},
{
"caption": "Compact XML",
"command": "compact_xml"
}
]
}
]
},
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children": [
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children": [
{
"caption": "xml2json",
"children": [
{
"caption": "Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/xml2json/xml2json.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/xml2json/Default ($platform).sublime-keymap",
"default": "{\n\t$0\n}\n"
}
}
]
}
]
}
]
}
]