Guest User

Untitled

a guest
Jul 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. -------VS code-------
  2. {
  3. "Block (with comment)": {
  4. "prefix": "di",
  5. "body": [
  6. "<!-- begin ${1} -->",
  7. "<div class=\"${1}\">",
  8. "\t${2}",
  9. "</div>",
  10. "<!-- end ${1} -->"
  11. ]
  12. }
  13. }
  14.  
  15. -------Sublime text-------
  16. <snippet>
  17. <content><![CDATA[
  18. <!-- begin $1 -->
  19. <div class="$1">
  20. $2
  21. </div>
  22. <!-- end $1 -->
  23. ]]></content>
  24. <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
  25. <tabTrigger>di</tabTrigger>
  26. <!-- Optional: Set a scope to limit where the snippet will trigger -->
  27. <scope>text.html</scope>
  28. </snippet>
Add Comment
Please, Sign In to add comment