-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom代码片段.txt
More file actions
388 lines (320 loc) · 8.02 KB
/
atom代码片段.txt
File metadata and controls
388 lines (320 loc) · 8.02 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# Each scope (e.g. '.source.coffee' above) can only be declared once.
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# https://atom.io/docs/latest/using-atom-basic-customization#cson
############# HTML #############
# 注意:在HTML文档中,不能使用.source.html 而是使用 .text.html !!!!! 查了2个小时才找到问题
'.text.html':
'viewport':
'prefix': 'viewport'
'body': '<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">'
'description': "for mobile"
'ng-app':
'prefix': 'ng-app'
'body': 'ng-app="$1"'
'description': 'Angular JS'
'ng-controller':
'prefix': 'ng-controller'
'body': 'ng-controller="$1"'
'description': 'Angular JS'
'ng-repeat':
'prefix': 'ng-repeat'
'body': 'ng-repeat="$1"'
'description': 'Angular JS'
'ng-model':
'prefix': 'ng-model'
'body': 'ng-model="$1"'
'description': 'Angular JS'
'ng-options':
'prefix': 'ng-options'
'body': 'ng-options="$1"'
'description': 'Angular JS'
'ng-init':
'prefix': 'ng-init'
'body': 'ng-init="$1"'
'description': 'Angular JS'
'ng-disabled':
'prefix': 'ng-disabled'
'body': 'ng-disabled="$1"'
'description': 'Angular JS'
'ng-show':
'prefix': 'ng-show'
'body': 'ng-show="$1"'
'description': 'Angular JS'
'ng-hide':
'prefix': 'ng-hide'
'body': 'ng-hide="$1"'
'description': 'Angular JS'
'ng-click':
'prefix': 'ng-click'
'body': 'ng-click="$1"'
'description': 'Angular JS'
'{{}}':
'prefix': 'an'
'body': '{{ $1 }}'
'description': 'Angular JS'
'ng-include':
'prefix': 'ng-include'
'body': 'ng-include="$1"'
'description': 'Angular JS'
'description': 'Angular JS'
'ng-class':
'prefix': 'ng-class'
'body': 'ng-class="$1"'
'description': 'Angular JS'
'ng-bind':
'prefix': 'ng-bind'
'body': 'ng-bind="$1"'
'description': 'Angular JS'
'ng-view':
'prefix': 'ng-view'
'body': 'ng-view="$1"'
'description': 'Angular JS'
'HTML':
'prefix': 'html5'
'body': '''
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
$1
</body>
<script type="text/javascript">
</script>
</html>
'''
'description': 'html init with script and css'
'baiduTemplate':
'prefix': 'baidutemplate'
'body': '<% $1 %>'
'description': 'baiduTemplate.js'
############# CSS #############
# 暂时还不可以使用,原因未查明。。。。
'.source.css':
'Multiline comment':
'prefix': '///'
'body': '''
/*
$1
*/
'''
############# JS #############
'.source.js':
'document.write()':
'prefix': 'write'
'body': 'document.write("$1");'
'get element by id':
'prefix': 'gi'
'body': 'document.getElementById("$1");'
'description': 'get element by id'
'query selector':
'prefix': 'qs'
'body': 'document.querySelector("$1");'
'description': 'query element by selector'
'query selector all':
'prefix': 'qsa'
'body': 'document.querySelectorAll("$1");'
'description': 'get elements by querySelectorAll'
'create new element':
'prefix': 'ce'
'body':'document.createElement("$1");'
'description':'document.createElement'
'angular_module':
'prefix': 'module'
'body': 'var app = angular.module("$1", []);'
'description': 'Angular JS'
'function':
'prefix': 'func'
'body': '''
function ($1) {
$2
}
'''
'description': 'JavaScript Native'
'controller':
'prefix': 'controller'
'body': '''
app.controller("$1", function ($scope) {
$2
});
'''
'description': 'Angular JS'
'directive':
'prefix': 'directive'
'body': '''
app.directive("$1", function () {
return {
restrict: "ECMA",
replace: true,
template: "$2"
};
});
'''
'description': 'Angular JS'
'createClass':
'prefix': 'createClass'
'body': '''
var MyComponent = React.createClass({
render: function () {
return $1;
}
});
'''
'description': 'React JS'
'render':
'prefix': 'render'
'body': '''
ReactDOM.render(
$1,
document.getElementById("$2")
);
'''
'description': 'React JS'
'alert':
'prefix': 'alert'
'body': 'alert($1);'
'description': 'JavaScript Native'
'require-requirejs':
'prefix': 'require-requirejs'
'body': '''
require(['$1'], function () {
});
'''
'description': 'RequireJS require'
'config-requirejs':
'prefix': 'config-requirejs'
'body': '''
require.config({
baseUrl: './$1',
paths: {
'': ''
}
});
'''
'description': 'RequireJS config'
'define-requirejs':
'prefix': 'define-requirejs'
'body': '''
define([$1], function () {
});
'''
'description': 'RequireJS define'
'define-seajs':
'prefix': 'define-seajs'
'body': '''
define(function (require, exports, module) {
$1
});
'''
'description': 'SeaJS define'
'jquery':
'prefix': 'jquery'
'body': "$('$1')"
'description': 'jQuery选择器'
'canvas1':
'prefix': 'getctx'
'body': '''
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var canvasWidth = canvas.width;
var canvasHeight = canvas.height;
'''
'description': 'Canvas Get Context'
'canvas2':
'prefix': 'clearRect'
'body': 'ctx.clearRect(0, 0, canvasWidth, canvasHeight);'
'description': 'Canvas clear rect'
'config-angularjs':
'prfix': 'config-angularjs'
'body': '''
app.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/', {
$1
}).otherwise({
redirectTo: '/'
});
}]);
'''
'description': 'angularJS config'
'config-angularjs':
'prefix': 'config-angularjs'
'body': '''
app.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/', {
$1
}).otherwise({
redirectTo: '/'
});
}]);
'''
'description': 'AngularJS config'
'factory-angularjs':
'prefix': 'factory-angularjs'
'body': '''
app.factory('$1Factory', function () {
return {
$2
};
});
'''
'description': 'AngularJS factory'
'service-angularjs':
'prefix': 'service-angularjs'
'body': '''
app.service('$1Server', function () {
this.funcName = function () {
};
});
'''
'description': 'AngularJS service'
'new vue':
'prefix': 'vue'
'body': '''
var vm = new Vue({
el: '$1',
data: {
},
methods: {
},
computed: {
}
});
'''
'description': 'new Vue Instance'
'new vue component':
'prefix': 'vueComponent'
'body': '''
Vue.component('$1', {
template: '$2',
data: function () {
return {};
}
});
'''
'description': 'new Vue Instance'