Skip to content

Instantly share code, notes, and snippets.

@nkostic
Last active August 29, 2015 13:55
Show Gist options
  • Save nkostic/8726231 to your computer and use it in GitHub Desktop.
Save nkostic/8726231 to your computer and use it in GitHub Desktop.
cfc
<snippet>
<content>
<![CDATA[
<cfcomponent
displayname="${1:newComponent}"
output="true"
hint="">
<cffunction
name="${2:newFunction}"
access="${3:public}"
returntype="${4:any}"
output="false"
hint="">
<cfargument
name="${5:newArgument}"
type="${6:string}"
required="${7:true}"
/>
<!--- Return out. --->
<cfreturn true />
</cffunction>
</cfcomponent>
]]>
</content>
<tabTrigger>cfcapp</tabTrigger>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment