forked from dcsobral/sublime-ensime
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Context.sublime-menu
37 lines (35 loc) · 1.18 KB
/
Context.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
[
{ "caption": "-" },
{
"caption": "Ensime",
"children":
[
{
"caption": "Server",
"children":
[
{ "caption": "Start", "command": "ensime_server", "args": { "start": true} },
{ "caption": "Stop", "command": "ensime_server", "args": { "kill": true} },
{ "caption": "Show output", "command": "ensime_server", "args": { "show_output": true, "quiet": true }}
//{ "caption": "Initialize Server...", "command": "initialize_ensime_server" }
]
},
{
"caption": "Source",
"children":
[
{ "caption": "Reformat source", "command": "ensime_reformat_source" },
{ "caption": "Show message output", "command": "ensime_show_message_view"},
{ "caption": "Show type info", "command": "ensime_inspect_type_at_point"}
]
},
{
"caption": "Refactor",
"children" :
[
{ "caption": "Organize imports", "command": "ensime_organize_imports" }
]
}
]
}
]