inky icon indicating copy to clipboard operation
inky copied to clipboard

Sublime Text tag completion

Open alexiuspor opened this issue 7 years ago • 1 comments

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

alexiuspor avatar Feb 16 '18 10:02 alexiuspor

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.

natebeaty avatar Feb 12 '20 19:02 natebeaty