Skip to content

Commit 9b442dd

Browse files
committed
update: jquery miscellaneous snippets keys
1 parent ec150a3 commit 9b442dd

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
## Miscellaneous
22

3-
### [jq-cd] animate
3+
### [jqget] get
44

55
```javascript
6+
${1:\$(this)}.get(${2:index});
7+
```
8+
9+
### [jqindex] index
610

11+
```javascript
12+
${1:\$(this)}.index(${2:selector});
13+
```
14+
15+
### [jqtoarray] toArray
16+
17+
```javascript
18+
${1:\$(this)}.toArray();
719
```

snippets/js/jquery/miscellaneous/jq-miscellaneous-get.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1:\$(this)}.get(${2:index});
44
]]></content>
5-
<tabTrigger>jq-mi</tabTrigger>
5+
<tabTrigger>jqget</tabTrigger>
66
<description>jq - get</description>
77
</snippet>

snippets/js/jquery/miscellaneous/jq-miscellaneous-index.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1:\$(this)}.index(${2:selector});
44
]]></content>
5-
<tabTrigger>jq-min</tabTrigger>
5+
<tabTrigger>jqindex</tabTrigger>
66
<description>jq - index</description>
77
</snippet>

snippets/js/jquery/miscellaneous/jq-miscellaneous-to-array.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<content><![CDATA[
33
${1:\$(this)}.toArray();
44
]]></content>
5-
<tabTrigger>jq-mta</tabTrigger>
5+
<tabTrigger>jqtoarray</tabTrigger>
66
<description>jq - toArray</description>
77
</snippet>

0 commit comments

Comments
 (0)