forked from DamnWidget/anaconda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
90 lines (90 loc) · 2.33 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
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
85
86
87
88
89
90
[
{
"caption": "Anaconda: Disable linting on this file",
"command": "anaconda_disable_linting"
},
{
"caption": "Anaconda: Enable linting on this file",
"command": "anaconda_enable_linting"
},
{
"caption": "Anaconda: Show error list",
"command": "anaconda_get_lines"
},
{
"caption": "Anaconda: Next lint error",
"command": "anaconda_next_lint_error"
},
{
"caption": "Anaconda: Previous lint error",
"command": "anaconda_prev_lint_error"
},
{
"caption": "Anaconda: Autoformat PEP8 Errors",
"command": "anaconda_auto_format"
},
{
"caption": "Anaconda: McCabe complexity check",
"command": "anaconda_mc_cabe"
},
{
"caption": "Anaconda: Vagrant Init",
"command": "anaconda_vagrant_init"
},
{
"caption": "Anaconda: Vagrant Status",
"command": "anaconda_vagrant_status"
},
{
"caption": "Anaconda: Vagrant Up",
"command": "anaconda_vagrant_up"
},
{
"caption": "Anaconda: Vagrant Reload",
"command": "anaconda_vagrant_reload"
},
{
"caption": "Anaconda: Vagrant Enable",
"command": "anaconda_vagrant_enable"
},
{
"caption": "Anaconda: Set Python interpreter",
"command": "anaconda_set_python_interpreter"
},
{
"caption": "Anaconda: Goto object definition",
"command": "anaconda_goto"
},
{
"caption": "Anaconda: Goto object assignment",
"command": "anaconda_goto_assignment"
},
{
"caption": "Anaconda: Goto Python object",
"command": "anaconda_goto_python_object"
},
{
"caption": "Anaconda: Find object usage",
"command": "anaconda_find_usages"
},
{
"caption": "Anaconda: Display object docs",
"command": "anaconda_doc"
},
{
"caption": "Anaconda: Run Current Test",
"command": "anaconda_run_current_test"
},
{
"caption": "Anaconda: Run Current File Tests",
"command": "anaconda_run_current_file_tests"
},
{
"caption": "Anaconda: Run Project Tests",
"command": "anaconda_run_project_tests"
},
{
"caption": "Anaconda: Run Last Test",
"command": "anaconda_run_last_test"
}
]