Guest User

Untitled

a guest
May 4th, 2018
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 0.52 KB | None | 0 0
  1.         ee-tag = {
  2.             patterns = (
  3.                 {   begin = '\{([a-zA-Z0-9_:]+)\s*?.*?\}';
  4.                     beginCaptures = {
  5.                         1 = { name = 'support.variable.open.tag.ee'; };
  6.                     };
  7.                     end = '\{/(\1)|([a-zA-Z0-9_:]+)\}';
  8.                     endCaptures = {
  9.                         1 = { name = 'invalid.illegal.mismatched.tag.ee'; };
  10.                         2 = { name = 'support.variable.close.tag.ee'; };
  11.                     };
  12.                     name = 'support.function.ee.html';
  13.                     contentName = 'entity.other.attribute-name.ee.open.tag.html';
  14.                     patterns = ( { include = '#tag-stuff'; } );
  15.                 },
  16.             );
  17.         };
Add Comment
Please, Sign In to add comment