-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathDefault (Linux).sublime-keymap
147 lines (115 loc) · 4.18 KB
/
Default (Linux).sublime-keymap
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
[
// Pretty JSON
{"keys": ["ctrl+shift+h"], "command": "pretty_json"},
// Switch Project
{"keys": ["alt+s"], "command": "switch_project",
"args": {
"callback_options": {
"callback_command": "login"
}
}
},
// Download all code and save them to new project
{
"keys": ["alt+f5"],
"command": "describe_metadata",
"args": {
"callback_options": {
"callback_command": "create_new_project"
}
}
},
// Update the default project
{"keys": ["alt+f7"], "command": "update_project"},
// Update the user language of running user
{"keys": ["alt+u"], "command": "update_user_language"},
// Open Output Log Panel
{"keys": ["ctrl+1"], "command": "show_my_panel", "args": {
"panel": "log"
}},
// Open Output Error Panel
{"keys": ["ctrl+2"], "command": "show_my_panel", "args": {
"panel": "error"
}},
// Open Output Diff Panel
{"keys": ["ctrl+3"], "command": "show_panel", "args": {
"panel": "output.diff_with_server"
}},
// Execute Rest Test
{"keys": ["ctrl+e"], "command": "execute_rest_test"},
// Open Document
{"keys": ["ctrl+alt+o"], "command": "open_documentation"},
// Refresh Folder
{"keys": ["alt+r","alt+f"], "command": "refresh_folder"},
// Save current component to server
{"keys": ["ctrl+alt+s"], "command": "save_to_server"},
// Choose a test class in the list and run test class
{"keys": ["alt+r","alt+t"],"command": "run_one_test"},
// Build package.xml
{"keys": ["alt+b","alt+p"],"command": "build_package_xml"},
// Execute chosen anonymous code snippet
{"keys": ["ctrl+alt+e"], "command": "execute_anonymous"},
// Run current Test Class in edit mode, it's Context Menu Item
// Problem here, don't know why?
{"keys": ["ctrl+alt+t"], "command": "run_test"},
// Refresh current component in edit mode
{"keys": ["ctrl+alt+r"], "command": "refresh_file_from_server"},
// Execute chosen valid uri
{"keys": ["f9"], "command": "execute_rest_test"},
// Execute chosen valid SOQL
{"keys": ["ctrl+alt+q"], "command": "execute_query"},
// Delete the current Component
{"keys": ["ctrl+alt+d"], "command": "delete_component"},
// View Code Coverage
{"keys": ["ctrl+alt+c"], "command": "view_code_coverage"},
// View the debug log detail by chosen log id
{"keys": ["alt+d", "alt+l"], "command": "view_debug_log_detail"},
// View the chosen valid SFDC Id in Web
{"keys": ["ctrl+i", "ctrl+d"], "command": "view_id_in_sfdc_web"},
// Open Current Component in SFDC Web
{"keys": ["f5"], "command": "show_in_sfdc_web"},
// Login To Home Page
{"keys": ["alt+h", "alt+p"], "command": "login_to_sfdc"},
// Login To Specified Apex Code
{"keys": ["ctrl+alt+g"], "command": "view_component_in_sfdc"},
// Set Check Point
{"keys": ["f6"], "command": "set_check_point"},
// Remove Check Point
{"keys": ["f7"], "command": "remove_check_point"},
// Login To Develop Console
{"keys": ["alt+d", "alt+c"], "command": "login_to_sfdc",
"args": {
"startURL": "/_ui/common/apex/debug/ApexCSIPage"
}
},
// Login To Debug Log
{"keys": ["alt+d", "alt+e"], "command": "login_to_sfdc",
"args": {
"startURL": "/setup/ui/listApexTraces.apexp"
}
},
// Login To Apex Job
{"keys": ["alt+a", "alt+j"], "command": "login_to_sfdc",
"args": {
"startURL": "/apexpages/setup/listAsyncApexJobs.apexp"
}
},
// Login To Custom Object Page
{"keys": ["alt+o", "alt+b"], "command": "login_to_sfdc",
"args": {
"startURL": "/p/setup/custent/CustomObjectsPage?setupid=CustomObjects"
}
},
// Login To Workflow Rule
{"keys": ["alt+w", "alt+r"], "command": "login_to_sfdc",
"args": {
"startURL": "/01Q"
}
},
// Login To Apex Test Execution
{"keys": ["alt+t", "alt+q"], "command": "login_to_sfdc",
"args": {
"startURL": "/ui/setup/apex/ApexTestQueuePage"
}
}
]