Skip to content

Commit

Permalink
Extend some tab triggers #8
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosantangelo committed Jun 26, 2015
1 parent 80f2df1 commit fef840a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -49,11 +49,11 @@ Below is a list of all snippets currently supported on this package and the trig
- `expect().not.toEqual`: ne⇥
- `expect().not.toMatch`: nm⇥
- `expect().not.toThrow`: nt⇥
- `jasmine.any`: a
- `jasmine.any`: any
- `jasmine.objectContaining`: oc⇥

### Spies
- `spyOn`: s
- `spyOn`: so
- `spyOn.and.callThrough`: sct⇥
- `spyOn.and.callFake`: scf⇥
- `spyOn.and.returnValue`: srv⇥
Expand Down
2 changes: 1 addition & 1 deletion snippets/double-quotes/jasmine.any.sublime-snippetx
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[jasmine.any($1)$0]]></content>
<tabTrigger><![CDATA[a]]></tabTrigger>
<tabTrigger><![CDATA[any]]></tabTrigger>
<scope>source.js</scope>
<description>jasmine.any</description>
</snippet>
2 changes: 1 addition & 1 deletion snippets/double-quotes/spyOn.sublime-snippetx
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[spyOn(${1:object}, "${2:method}")$3;$0]]>
</content>
<tabTrigger><![CDATA[s]]></tabTrigger>
<tabTrigger><![CDATA[so]]></tabTrigger>
<scope>source.js</scope>
<description>spyOn</description>
</snippet>
2 changes: 1 addition & 1 deletion snippets/single-quotes/jasmine.any.sublime-snippet
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[jasmine.any($1)$0]]></content>
<tabTrigger><![CDATA[a]]></tabTrigger>
<tabTrigger><![CDATA[any]]></tabTrigger>
<scope>source.js</scope>
<description>jasmine.any</description>
</snippet>
2 changes: 1 addition & 1 deletion snippets/single-quotes/spyOn.sublime-snippet
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[spyOn(${1:object}, '${2:method}')$3;$0]]>
</content>
<tabTrigger><![CDATA[s]]></tabTrigger>
<tabTrigger><![CDATA[so]]></tabTrigger>
<scope>source.js</scope>
<description>spyOn</description>
</snippet>

0 comments on commit fef840a

Please sign in to comment.