-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathDefault.sublime-commands
47 lines (47 loc) · 1.31 KB
/
Default.sublime-commands
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
[
{
"caption": "Ycmd: Create HMAC keys",
"command": "ycmd_create_hmac_pair"
},
{
"caption": "Ycmd: Restart ycmd server",
"command": "ycmd_restart_server"
},
{
"caption": "Ycmd: Reload language list from settings",
"command": "ycmd_reload_settings"
},
{
"caption": "Ycmd: Settings - Default",
"command": "open_file",
"args": { "file": "${packages}/YcmdCompletion/YcmdCompletion.sublime-settings" }
},
{
"caption": "Ycmd: Settings - User",
"command": "open_file",
"args": { "file": "${packages}/User/YcmdCompletion.sublime-settings" }
},
{
"caption": "Ycmd: GoTo Definition",
"command": "ycmd_execute_completer_func",
"args": {"command": "GoTo"}
},
{
"caption": "Ycmd: Get Type Of Current Statement",
"command": "ycmd_execute_completer_func",
"args": {"command": "GetType"}
},
{
"caption": "Ycmd: Get Parent For Current Statement",
"command": "ycmd_execute_completer_func",
"args": {"command": "GetParent"}
},
{
"caption": "Ycmd: Show Error Panel",
"command": "ycmd_error_panel_show"
},
{
"caption": "Ycmd: Hide Error Panel",
"command": "ycmd_error_panel_hide"
}
]