Skip to content

Commit b6c5161

Browse files
author
Zeno Rocha
committed
Merge pull request #6 from hugobessaa/indentation-fix
Indentation Fix
2 parents 277ccb9 + b94fe2a commit b6c5161

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,15 @@ for (var ${1:prop} in ${1:obj}) {
183183
184184
```javascript
185185
function ${1:methodName} (${2:arguments}) {
186-
${3:// body...}
186+
${3:// body...}
187187
}
188188
```
189189
190190
### [pr] prototype
191191
192192
```javascript
193193
${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
194-
${4:// body...}
194+
${4:// body...}
195195
}
196196
```
197197
@@ -209,15 +209,15 @@ ${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
209209
210210
```javascript
211211
setInterval(function() {
212-
${2:// body...}
212+
${2:// body...}
213213
}, ${1:delay});
214214
```
215215
216216
### [st] setTimeout
217217
218218
```javascript
219219
setTimeout(function() {
220-
${2:// body...}
220+
${2:// body...}
221221
}, ${1:delay});
222222
```
223223

function-prototype.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
4-
${4:// body...}
4+
${4:// body...}
55
}
66
]]></content>
77
<tabTrigger>pr</tabTrigger>

function.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
function ${1:methodName} (${2:arguments}) {
4-
${3:// body...}
4+
${3:// body...}
55
}
66
]]></content>
77
<tabTrigger>fu</tabTrigger>

timer-setInterval.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
setInterval(function() {
4-
${2:// body...}
4+
${2:// body...}
55
}, ${1:delay});
66
]]></content>
77
<tabTrigger>si</tabTrigger>

timer-setTimeout.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<snippet>
22
<content><![CDATA[
33
setTimeout(function() {
4-
${2:// body...}
4+
${2:// body...}
55
}, ${1:delay});
66
]]></content>
77
<tabTrigger>st</tabTrigger>

0 commit comments

Comments
 (0)