-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDefault.sublime-commands
78 lines (78 loc) · 1.96 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
[
{
"caption": "Refactor: Create Rope Project",
"command": "refactor_create_project"
},
{
"caption": "Refactor: Undo",
"command": "refactor_undo"
},
{
"caption": "Refactor: Redo",
"command": "refactor_redo"
},
{
"caption": "Refactor: Rename a field",
"command": "refactor_rename_attribute"
},
{
"caption": "Refactor: Rename a module",
"command": "refactor_rename_module"
},
{
"caption": "Refactor: Module to Package",
"command": "refactor_module_to_package"
},
{
"caption": "Refactor: Change Signature",
"command": "refactor_change_signature"
},
{
"caption": "Refactor: Extract Method",
"command": "refactor_extract_method"
},
{
"caption": "Refactor: Extract Variable",
"command": "refactor_extract_variable"
},
{
"caption": "Refactor: Inline",
"command": "refactor_inline"
},
{
"caption": "Refactor: Local to Field",
"command": "refactor_local_to_field"
},
{
"caption": "Refactor: Introduce Parameter",
"command": "refactor_introduce_parameter"
},
{
"caption": "Refactor: Introduce Constructor Factory",
"command": "refactor_introduce_factory"
},
{
"caption": "Refactor: Encapsulate Field",
"command": "refactor_encapsulate_field"
},
{
"caption": "Refactor: Use Function whenever",
"command": "refactor_use_function"
},
{
"caption": "Refactor: Move across module",
"command": "refactor_move_global"
},
{
"caption": "Refactor: Move attribute",
"command": "refactor_move_attribute"
},
{
"caption": "Refactor: Transform Function to Method",
"command": "refactor_method_object"
},
{
"caption": "Refactor: Restructure",
"command": "refactor_restructure"
}
]