-
Notifications
You must be signed in to change notification settings - Fork 261
/
Main.sublime-menu
73 lines (73 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[{
"caption": "Tools",
"mnemonic": "T",
"id": "tools",
"children": [{
"id": "nodejsmenu",
"caption": "Nodejs",
"children": [{
"id": "nodejsrunmenu",
"caption": "Run",
"children": [
{ "id": "nodejsrun", "caption": "Run", "command": "node_run" },
{ "id": "nodejsrunarguments", "caption": "Run + arguments", "command": "node_run_arguments" }
]
},
{
"id": "nodejsdebugmenu",
"caption": "Debug",
"children": [
{ "id": "nodejsdrun", "caption": "Debug", "command": "node_drun" },
{ "id": "nodejsdrunarguments", "caption": "Debug + arguments", "command": "node_drun_arguments" }
]
},
{
"id": "nodejsnpmmenu",
"caption": "npm",
"children": [
{ "id": "nodejsnpmcommand", "caption": "Command", "command": "node_npm" },
{ "id": "nodejsnpmsearch", "caption": "Search", "command": "node_npm_search" },
{ "id": "nodejsnpminstall", "caption": "Install", "command": "node_npm_install" },
{ "id": "nodejsnpmuninstall", "caption": "Uninstall", "command": "node_npm_uninstall" },
{ "id": "nodejsnpmupdate", "caption": "Update", "command": "node_npm_update" },
{ "id": "nodejsnpmlist", "caption": "List", "command": "node_npm_list" },
{ "id": "nodejsnpmpublish", "caption": "Publish", "command": "node_npm_publish" }
]
},
{ "id": "nodejsuglify", "caption": "Uglify", "command": "node_uglify" }
]
}]
},
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":[{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":[{
"caption": "Nodejs",
"children": [
{
"command": "edit_settings",
"args": {
"base_file": "${packages}/Nodejs/Nodejs.sublime-settings",
"default": "// Settings in here override those in \"Nodejs/Nodejs.sublime-settings\",\n// and are overridden in turn by syntax-specific settings.\n{\n\t$0\n}\n"
},
"caption": "Settings – User"
},
{
"caption": "-"
},
{
"command": "edit_settings",
"args": {
"base_file": "${packages}/Nodejs/Default ($platform).sublime-keymap",
"default": "// Settings in here override those in \"Nodejs/Default.sublime-keymap\"\n{\n\t$0\n}\n"
},
"caption": "Key Bindings – User"
}]
}]
}]
}]