Skip to content

Commit b94fe2a

Browse files
committed
Indentation Fix
1 parent 7898a10 commit b94fe2a

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
@@ -155,15 +155,15 @@ ${1:document}.querySelectorAll('${2:selector}');
155155
156156
```javascript
157157
function ${1:methodName} (${2:arguments}) {
158-
${3:// body...}
158+
${3:// body...}
159159
}
160160
```
161161
162162
### [pr] prototype
163163
164164
```javascript
165165
${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
166-
${4:// body...}
166+
${4:// body...}
167167
}
168168
```
169169
@@ -173,15 +173,15 @@ ${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
173173
174174
```javascript
175175
setInterval(function() {
176-
${2:// body...}
176+
${2:// body...}
177177
}, ${1:delay});
178178
```
179179
180180
### [st] setTimeout
181181
182182
```javascript
183183
setTimeout(function() {
184-
${2:// body...}
184+
${2:// body...}
185185
}, ${1:delay});
186186
```
187187

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)