forked from sublimescala/sublime-ensime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.sublime-menu
158 lines (157 loc) · 7.23 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[
{
"id": "tools",
"children":
[
{
"caption": "Ensime",
"children":
[
{
"caption": "Maintenance",
"children":
[
{ "caption": "Startup", "command": "ensime_startup" },
{ "caption": "Restart", "command": "ensime_restart" },
{ "caption": "Shutdown", "command": "ensime_shutdown" },
{ "caption": "Create project from scratch", "command": "ensime_create_project_from_scratch" },
{ "caption": "Create project from SBT", "command": "ensime_create_project_from_sbt" },
{ "caption": "Show project", "command": "ensime_show_project" },
{ "caption": "Show session", "command": "ensime_show_session" },
{ "caption": "Show client log", "command": "ensime_show_client_log" },
{ "caption": "Show server log", "command": "ensime_show_server_log" },
{ "caption": "Enable error highlighting", "command": "ensime_highlight", "args": { "enable": true } },
{ "caption": "Disable error highlighting", "command": "ensime_highlight", "args": { "enable": false } }
]
},
{
"caption": "Development",
"children":
[
{ "caption": "Show notes", "command": "ensime_show_notes" },
{ "caption": "Inspect type at point", "command": "ensime_inspect_type_at_point" },
{ "caption": "Go to definition", "command": "ensime_go_to_definition" },
{ "caption": "Add import", "command": "ensime_add_import" },
{ "caption": "Build", "command": "ensime_build" }
]
},
{
"caption": "Debugging",
"children":
[
{ "caption": "Toggle breakpoint", "command": "ensime_toggle_breakpoint" },
{ "caption": "Clear breakpoints", "command": "ensime_clear_breakpoints" },
{ "caption": "Start debugger", "command": "ensime_start_debugger" },
{ "caption": "Stop debugger", "command": "ensime_stop_debugger" },
{ "caption": "Step into", "command": "ensime_step_into" },
{ "caption": "Step over", "command": "ensime_step_over" },
{ "caption": "Continue", "command": "ensime_continue_debugger" },
{ "caption": "Show output", "command": "ensime_show_output" },
{ "caption": "Show stack", "command": "ensime_show_stack" },
{ "caption": "Show watches", "command": "ensime_show_watches" }
]
}
]
}
]
},
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "Ensime",
"children":
[
{
"command": "open_file", "args":
{
"file": "${packages}/Ensime/Ensime.sublime-settings"
},
"caption": "Settings – Default"
},
{
"command": "open_file", "args":
{
"file": "${packages}/User/Ensime.sublime-settings"
},
"caption": "Settings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/Ensime/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Keymap – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/Ensime/Default (OSX).sublime-keymap",
"platform": "OSX"
},
"caption": "Keymap – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/Ensime/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Keymap – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Keymap – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (OSX).sublime-keymap",
"platform": "OSX"
},
"caption": "Keymap – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Keymap – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/Ensime/Default.sublime-mousemap"
},
"caption": "Mousemap – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default.sublime-mousemap"
},
"caption": "Mousemap – User"
},
{ "caption": "-" }
]
}
]
}
]
}
]