-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathMain.sublime-menu
57 lines (57 loc) · 1.74 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
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
[
{
"caption": "Tools",
"mnemonic": "T",
"id": "tools",
"children":
[
{ "caption": "-", "id": "packagecommands" },
{
"caption": "AutoHotkey",
"children":
[
{ "command": "ahkrun", "caption": "AutoHotkey Default - Run"},
{ "command": "ahkrun", "args": {"version": "classic"}, "caption": "AutoHotkey Classic - Run"},
{ "command": "ahkrun", "args": {"version": "lexikos_A32"}, "caption": "AutoHotkey Lexikos_A32 - Run"},
{ "command": "ahkrun", "args": {"version": "lexikos_U32"}, "caption": "AutoHotkey Lexikos_U32 - Run"},
{ "command": "ahkrun", "args": {"version": "lexikos_U64"}, "caption": "AutoHotkey Lexikos_U64 - Run"},
{ "command": "ahkcompile", "caption": "AutoHotkey Default - Compile"},
{ "command": "ahkcompile", "args": {"version": "classic"}, "caption": "AutoHotkey Classic - Compile"},
{ "command": "ahkcompile", "args": {"version": "lexikos"}, "caption": "AutoHotkey Lexikos - Compile"},
{ "command": "ahkrunpiped", "caption": "AutoHotkey - Run As Piped Buffer", "mnemonic": "P"},
],
},
]
},
{
"caption": "Preferences",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "AutoHotkey",
"children":
[
{
"command": "open_file",
"args": {"file": "${packages}/AutoHotkey/AutoHotkey.sublime-settings"},
"caption": "AutoHotkey Settings - Default"
},
{
"command": "open_file",
"args": {"file": "${packages}/User/AutoHotkey.sublime-settings"},
"caption": "AutoHotkey Settings - User"
}
]
}
]
}
]
}
]