forked from coronalabs/CoronaSDK-SublimeText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.sublime-menu.template
82 lines (81 loc) · 3.52 KB
/
Main.sublime-menu.template
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
80
81
82
[
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "Corona Editor",
"children":
[
{
"command": "open_file",
"args": {"file": "${packages}/$corona_package_name/README.md"},
"caption": "README"
},
{
"command": "open_file",
"args": {"file": "${packages}/$corona_package_name/RELEASE-NOTES.md"},
"caption": "Release Notes"
},
{ "caption": "-" },
{
"command": "open_file",
"args": {"file": "${packages}/$corona_package_name/Corona Editor.sublime-settings"},
"caption": "Settings – Default"
},
{
"command": "open_file",
"args": {"file": "${packages}/User/Corona Editor.sublime-settings"},
"caption": "Settings – User"
},
{ "caption": "-" },
{
"command": "open_file",
"args": {"file": "${packages}/$corona_package_name/Default.sublime-keymap"},
"caption": "Key Bindings – Default"
},
{
"command": "open_file",
"args": {"file": "${packages}/User/Default.sublime-keymap"},
"caption": "Key Bindings – User"
},
{ "caption": "-" }
]
}
]
}
]
},
{ "id":"corona", "caption": "Corona Editor", "children":
[
{ "caption": "-" },
{ "caption": "Corona SDK Docs", "command": "corona_docs" },
{ "caption": "Function Navigator...", "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "caption": "-" },
{ "caption": "Snippets", "children": $corona_snippets },
{ "caption": "-" },
{ "caption": "Corona Debugger", "children": [
{ "caption": "Run", "command": "corona_debugger", "args": {"cmd": "run"} },
{ "caption": "Step Over", "command": "corona_debugger", "args": {"cmd": "over"} },
{ "caption": "Step Into", "command": "corona_debugger", "args": {"cmd": "step"} },
{ "caption": "Toggle Breakpoint", "command": "corona_debugger", "args": {"cmd": "setb"} },
{ "caption": "Inspect Variable", "command": "corona_debugger", "args": {"cmd": "dump"} },
{ "caption": "Stop", "command": "corona_debugger", "args": {"cmd": "exit"} }
]
},
{ "caption": "Run Project", "command": "run_project" },
{ "command": "toggle_build_panel" },
{ "caption": "Clear Build Panel", "command": "clear_output_panel" },
{ "caption": "-" },
{ "caption": "About Corona Editor...", "command": "about_corona_editor" }
]
}
]