forked from SublimeText/PackageDev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.sublime-menu
31 lines (31 loc) · 1.32 KB
/
Main.sublime-menu
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
[
{
"id": "tools",
"children":
[
{
"id": "packages",
"caption": "Packages",
"children":
[
{
"caption": "Package Development",
"id": "package_dev",
"children":
[
{ "caption": "New Package…", "command": "new_package" },
{ "caption": "Delete Package…", "command": "delete_package" },
{ "caption": "-" },
{ "caption": "New Syntax Definition", "command": "new_yaml_syntax_def" },
{ "caption": "New Syntax Definition to Buffer", "command": "new_yaml_syntax_def_to_buffer" },
{ "caption": "-" },
{ "caption": "New Raw Snippet…", "command": "new_raw_snippet" },
{ "caption": "New Raw Snippet from Snippet…", "command": "new_raw_snippet_from_snippet" },
{ "caption": "Generate Snippet from Raw Snippet", "command": "generate_snippet_from_raw_snippet" }
]
}
]
}
]
}
]