-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathContext.sublime-menu
78 lines (78 loc) · 1.76 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
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
[
{
"caption": "AnacondaGO",
"id": "anaconda_go_context",
"children": [
{
"caption": "Show Documentation",
"command": "anaconda_go_doc"
},
{
"caption": "Goto Definition",
"command": "anaconda_go_goto"
},
{
"caption": "Get Referrers",
"command": "anaconda_go_referrers"
},
{
"caption": "Implements",
"command": "anaconda_go_implements"
},
{
"caption": "Get Possible Function Callees",
"command": "anaconda_go_callees"
},
{
"caption": "Get Function Callers",
"command": "anaconda_go_callers"
},
{
"caption": "Dereference Pointer",
"command": "anaconda_go_pointsto"
},
{
"caption": "Analyze Symbol",
"command": "anaconda_go_explore_symbol_under_cursor",
"args": { "operation": "analyze" }
},
{
"caption": "Browse Symbol",
"command": "anaconda_go_explore_symbol_under_cursor",
"args": { "operation": "browse" }
},
{
"caption": "Browse Package Symbols",
"command": "anaconda_go_explore_package_decls"
},
{
"caption": "Goto Next Function",
"command": "anaconda_go_next_func",
},
{
"caption": "Goto Prev Function",
"command": "anaconda_go_prev_func",
},
{
"command": "anaconda_get_lines",
"caption": "Show error list"
},
{
"command": "anaconda_next_lint_error",
"caption": "Next lint error"
},
{
"command": "anaconda_prev_lint_error",
"caption": "Previous lint error"
},
{
"caption": "Browse Packages",
"command": "anaconda_go_explore_packages",
},
{
"caption": "Auto Format File",
"command": "anaconda_go_format_sync"
}
]
}
]