-
Notifications
You must be signed in to change notification settings - Fork 25
/
Default.sublime-commands
236 lines (236 loc) · 6.55 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
[
{
"caption": "String Utilities: Expand Selection to Whole String",
"command": "string_utilities_expand_string"
},
{
"caption": "String Utilities: Convert Tabs to Spaces",
"command": "convert_tabs_to_spaces"
},
{
"caption": "String Utilities: Convert Spaces to Tabs",
"command": "convert_spaces_to_tabs"
},
{
"caption": "String Utilities: Convert Spaces to (Non-breaking space)",
"command": "convert_spaces_to_non_breaking"
},
{
"caption": "String Utilities: Convert Chars to HTML Entities",
"command": "convert_chars_to_html"
},
{
"caption": "String Utilities: Convert HTML Entities to Chars",
"command": "convert_html_to_chars"
},
{
"caption": "String Utilities: Convert camelCase <-> Underscores",
"command": "convert_camel_underscores"
},
{
"caption": "String Utilities: Convert camelCase <-> Dash",
"command": "convert_camel_dash"
},
{
"caption": "String Utilities: Convert PascalCase <-> Underscores",
"command": "convert_pascal_underscores"
},
{
"caption": "String Utilities: Convert Single Quotes To Double",
"command": "convert_single_quotes_to_double"
},
{
"caption": "String Utilities: Convert Double Quotes To Single",
"command": "convert_double_quotes_to_single"
},
{
"caption": "String Utilities: Encode as URL Notation",
"command": "url_encode"
},
{
"caption": "String Utilities: Decode from URL Notation",
"command": "url_decode"
},
{
"caption": "String Utilities: Convert To Unicode Notation",
"command": "convert_to_unicode_notation"
},
{
"caption": "String Utilities: Convert From Unicode Notation",
"command": "convert_from_unicode_notation"
},
{
"caption": "String Utilities: Convert To Base64",
"command": "convert_to_base64"
},
{
"caption": "String Utilities: Convert From Base64",
"command": "convert_from_base64"
},
{
"caption": "String Utilities: Convert To Hex",
"command": "convert_to_hex"
},
{
"caption": "String Utilities: Convert From Hex",
"command": "convert_from_hex"
},
{
"caption": "String Utilities: Convert HTML Color Hex To RGB",
"command": "convert_hex_to_rgb"
},
{
"caption": "String Utilities: Convert HTML Color RGB To Hex",
"command": "convert_rgb_to_hex"
},
{
"caption": "String Utilities: Calculate MD5",
"command": "convert_md5"
},
{
"caption": "String Utilities: Calculate SHA1",
"command": "convert_sha1"
},
{
"caption": "String Utilities: Calculate SHA224",
"command": "convert_sha224"
},
{
"caption": "String Utilities: Calculate SHA256",
"command": "convert_sha256"
},
{
"caption": "String Utilities: Calculate SHA384",
"command": "convert_sha384"
},
{
"caption": "String Utilities: Calculate SHA512",
"command": "convert_sha512"
},
{
"caption": "String Utilities: Convert Unixtime <-> Datetime",
"command": "convert_time_format"
},
{
"caption": "String Utilities: Insert Current Datetime",
"command": "insert_timestamp"
},
{
"args": {
"length": "6"
},
"caption": "String Utilities: Insert Password (6 char)",
"command": "generate_password"
},
{
"args": {
"length": "8"
},
"caption": "String Utilities: Insert Password (8 char)",
"command": "generate_password"
},
{
"args": {
"length": "12"
},
"caption": "String Utilities: Insert Password (12 char)",
"command": "generate_password"
},
{
"args": {
"length": "16"
},
"caption": "String Utilities: Insert Password (16 char)",
"command": "generate_password"
},
{
"args": {
"length": "32"
},
"caption": "String Utilities: Insert Password (32 char)",
"command": "generate_password"
},
{
"args": {
"length": "40"
},
"caption": "String Utilities: Insert Password (40 char)",
"command": "generate_password"
},
{
"args": {
"length": "64"
},
"caption": "String Utilities: Insert Password (64 char)",
"command": "generate_password"
},
{
"args": {
"length": "6"
},
"caption": "String Utilities: Insert Password with spec symbols (6 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "8"
},
"caption": "String Utilities: Insert Password with spec symbols (8 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "12"
},
"caption": "String Utilities: Insert Password with spec symbols (12 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "16"
},
"caption": "String Utilities: Insert Password with spec symbols (16 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "32"
},
"caption": "String Utilities: Insert Password with spec symbols (32 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "40"
},
"caption": "String Utilities: Insert Password with spec symbols (40 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "64"
},
"caption": "String Utilities: Insert Password with spec symbols (64 char)",
"command": "generate_password_spec_symbols"
},
{
"caption": "String Utilities: Decode HeidiSQL password",
"command": "decode_heidi_sql"
},
{
"caption": "String Utilities: Insert Internal IP",
"command": "string_utilities_int_ip"
},
{
"caption": "String Utilities: Insert External IP",
"command": "string_utilities_ext_ip"
},
{
"caption": "String Utilities: Decode JSON",
"command": "string_utilities_decode_json"
},
{
"caption": "String Utilities: PHP object to array",
"command": "php_object_to_array"
}
]