-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathSublimeRope.sublime-commands
58 lines (58 loc) · 1.49 KB
/
SublimeRope.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
[
{
"caption": "Rope: New Project",
"command": "rope_new_project"
},
{
"caption": "Rope: Show Documentation",
"command": "python_get_documentation"
},
{
"caption": "Rope: Go to Definition",
"command": "goto_python_definition"
},
{
"caption": "Rope: Import Assist",
"command": "python_auto_import"
},
{
"caption": "Rope: Jump To Global",
"command": "python_jump_to_global"
},
{
"caption": "Rope Refactoring: Rename",
"command": "python_refactor_rename"
},
{
"caption": "Rope Refactoring: Extract Method",
"command": "python_refactor_extract_method"
},
{
"caption": "Rope Refactoring: Extract Variable",
"command": "python_refactor_extract_variable"
},
{
"caption": "Rope Refactoring: Inline Variable",
"command": "python_refactor_inline_variable"
},
{
"caption": "Rope Refactoring: Restructure",
"command": "python_refactor_restructure"
},
{
"caption": "Rope: Regenerate Project Cache",
"command": "python_regenerate_cache"
},
{
"caption": "Rope: Regenerate Global Module Cache",
"command": "python_generate_modules_cache"
},
{
"caption": "Rope: Organize Imports",
"command": "python_organize_imports"
},
{
"caption": "Rope: Manual Completion",
"command": "python_manual_completion_request"
}
]