Snippet Generator
Sublime Text, Atom & VS Code snippet generator
Convert snippets across your text editors
Clear inputsTry an example
e.g.
source.js
, source.css
or text.html
Sublime
<snippet>
<content><![CDATA[]]></content>
<description></description>
<tabTrigger></tabTrigger>
<scope></scope>
</snippet>
Create a new *.sublime-snippet file and save the contents above into it.
Discover more from the Sublime snippets docs.
Discover more from the Sublime snippets docs.
Atom
'.':
'':
'prefix': ''
'body': """
"""
Paste the above code into your snippets.cson.
Discover more from the Atom snippets docs.
Discover more from the Atom snippets docs.
VS Code
"snippet-": {
"prefix": "",
"body": "",
"description": ""
}
Go to 'Preferences' > 'User snippets' and select the correct type, then paste in the above code.
Discover more from the VS Code snippets docs.
Discover more from the VS Code snippets docs.