-
Notifications
You must be signed in to change notification settings - Fork 259
/
Context.sublime-menu
84 lines (84 loc) · 2.73 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
79
80
81
82
83
84
[
{
"caption": "Anaconda",
"id": "anaconda_context",
"children":
[
{
"command": "anaconda_goto",
"id": "anaconda_goto",
"caption": "Goto Definition"
},
{
"command": "anaconda_goto_assignment",
"id": "anaconda_goto_assignment",
"caption": "Goto Assignment"
},
{
"command": "anaconda_find_usages",
"id": "anaconda_find_usages",
"caption": "Find Usages"
},
{
"command": "anaconda_doc",
"id": "anaconda_doc",
"caption": "Show Documentation"
},
{
"command": "anaconda_rename",
"id": "anaconda_rename",
"caption": "Rename object under cursor"
},
{
"command": "anaconda_get_lines",
"id": "anaconda_get_lines",
"caption": "Show error list"
},
{
"command": "anaconda_next_lint_error",
"id": "anaconda_next_lint_error",
"caption": "Next lint error"
},
{
"command": "anaconda_prev_lint_error",
"id": "anaconda_prev_lint_error",
"caption": "Previous lint error"
},
{
"command": "anaconda_auto_format",
"id": "anaconda_auto_format",
"caption": "Autoformat PEP8 Errors"
},
{
"command": "anaconda_mc_cabe",
"id": "anaconda_mc_cabe",
"caption": "McCabe complexity check"
},
{
"command": "anaconda_auto_import",
"id": "anaconda_auto_import",
"caption": "Auto import undefined word under cursor"
},
{
"command": "anaconda_run_current_file_tests",
"id": "anaconda_run_current_file_tests",
"caption": "Run tests on current file"
},
{
"command": "anaconda_run_project_tests",
"id": "anaconda_run_project_tests",
"caption": "Run full project tests= suite",
},
{
"command": "anaconda_run_current_test",
"id": "anaconda_run_current_test",
"caption": "Run test under the cursor",
},
{
"command": "anaconda_run_last_test",
"id": "anaconda_run_last_test",
"caption": "Repeat last test run"
}
]
}
]