We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, is there a package for sublime text, which completes the tags like wrapper, container, row ... as emmet does for html tags? Thx, Alex
The text was updated successfully, but these errors were encountered:
I was looking for the same, and ended up just making my own, e.g.:
row<tab>:
<tab>
<snippet> <content><![CDATA[ <row> $1 </row> ]]></content> <tabTrigger>row</tabTrigger> <description>ZURB Inky Row</description> <scope>text.html</scope> </snippet>
columns<tab>:
<snippet> <content><![CDATA[ <columns${1: small=""}${2: large=""}> $0 </columns> ]]></content> <tabTrigger>columns</tabTrigger> <description>ZURB Inky Columns</description> <scope>text.html</scope> </snippet>
I'm sure I'll tweak these more as I start using Inky more, but this is a good starting point.
Sorry, something went wrong.
No branches or pull requests
Hi,
is there a package for sublime text, which completes the tags like wrapper, container, row ... as emmet does for html tags?
Thx,
Alex
The text was updated successfully, but these errors were encountered: