-
Notifications
You must be signed in to change notification settings - Fork 5
/
Context.sublime-menu
38 lines (38 loc) · 1.52 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
[
{
"caption": "Dependents",
"children": [
{ "command": "jump_to_dependency", "caption": "Jump to Dependency" },
{ "command": "jump_to_definition", "caption": "Jump to Definition (experimental)" },
{ "command": "get_path", "caption": "Copy Module Path" },
{
"caption": "Find Dependents",
"children": [
{ "command": "dependents", "caption": "Find all" },
{ "command": "dependents", "caption": "Open all", "args": { "modifier": "OPEN_ALL"}},
{ "command": "dependents", "caption": "Copy all", "args": { "modifier": "COPY_ALL"}}
]
},
{
"caption": "Find Relevant App Entry Points",
"children": [
{ "command": "find_driver", "caption": "Find all" },
{ "command": "find_driver", "caption": "Open all", "args": { "modifier": "OPEN_ALL"}}
]
},
{
"caption": "View Dependency Tree",
"children": [
{ "command": "tree", "caption": "As JSON" }
]
},
{
"caption": "Find Usages (experimental)",
"children": [
{ "command": "find_callers", "caption": "Find all" },
{ "command": "find_callers", "caption": "Open all", "args": { "modifier": "OPEN_ALL"}}
]
}
]
}
]