Last active
May 11, 2022 14:11
-
-
Save ZYinMD/860926a178ccd6d107ffe2c6727b5845 to your computer and use it in GitHub Desktop.
JavaScript ES6 arrow function snippet for Sublime Text 3
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-arrow-function.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you choose to Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<!-- Use tabs in this file, not spaces --> | |
<snippet> | |
<content> | |
<![CDATA[ | |
${1:(${2:parameter})} => ${3:{ | |
${4://tab to get here} | |
\}} | |
]]> | |
</content> | |
<!-- Set a tabTrigger: how to trigger the snippet --> | |
<tabTrigger>arrowFun</tabTrigger> | |
<!-- Optional: Set a description for the tabTrigger --> | |
<description>ES6 arrow function</description> | |
<!-- Optional: Set a scope to limit the file types where this snippet will trigger --> | |
<scope>text.html, text.plain, source.js</scope> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
type "arrowFun" to trigger