Last active
August 29, 2015 14:22
-
-
Save Gregcop1/ebb2f4dc64e9f5de2131 to your computer and use it in GitHub Desktop.
Snippet to chain parameters documentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[# @event ${1:name} ${2:description} | |
#]]></content> | |
<tabTrigger><![CDATA[#e]]></tabTrigger> | |
<scope>source.coffee</scope> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[# @option ${1:name} [${2:Object}] ${3:description} | |
#]]></content> | |
<tabTrigger><![CDATA[#o]]></tabTrigger> | |
<scope>source.coffee</scope> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[# @${1:param} ${2:name} [${3:Object}] ${4:description} | |
#]]></content> | |
<tabTrigger>#</tabTrigger> | |
<scope>source.coffee</scope> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[# @return [${1:Object}] ${2:description} | |
#]]></content> | |
<tabTrigger><![CDATA[#<]]></tabTrigger> | |
<scope>source.coffee</scope> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment