Skip to content
New issue

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

Sublime Text tag completion #98

Open
alexiuspor opened this issue Feb 16, 2018 · 1 comment
Open

Sublime Text tag completion #98

alexiuspor opened this issue Feb 16, 2018 · 1 comment

Comments

@alexiuspor
Copy link

Hi,
is there a package for sublime text, which completes the tags like wrapper, container, row ... as emmet does for html tags?
Thx,
Alex

@natebeaty
Copy link

natebeaty commented Feb 12, 2020

I was looking for the same, and ended up just making my own, e.g.:

row<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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants