-
Notifications
You must be signed in to change notification settings - Fork 5
/
Default.sublime-commands
50 lines (50 loc) · 1.36 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
48
49
50
[
{
"caption": "Dependents: Find the dependents of the current file",
"command": "dependents"
},
{
"caption": "Dependents: Jump to dependency under your cursor",
"command": "jump_to_dependency"
},
{
"caption": "Dependents: Open all dependents",
"command": "dependents",
"args": { "modifier": "OPEN_ALL"}
},
{
"caption": "Dependents: Copy all dependents to clipboard",
"command": "dependents",
"args": { "modifier": "COPY_ALL"}
},
{
"caption": "Dependents: Find relevant app entry points",
"command": "find_driver"
},
{
"caption": "Dependents: Open all relevant app entry points",
"command": "find_driver",
"args": { "modifier": "OPEN_ALL"}
},
{
"caption": "Dependents: View this file's dependency tree",
"command": "tree"
},
{
"caption": "Dependents: Copy path to the clipboard",
"command": "get_path"
},
{
"caption": "Dependents: Jump to definition (experimental)",
"command": "jump_to_definition"
},
{
"caption": "Dependents: Find usages (experimental)",
"command": "find_callers"
},
{
"caption": "Dependents: Open all usages",
"command": "find_callers",
"args": { "modifier": "OPEN_ALL" }
}
]