Skip to content

Instantly share code, notes, and snippets.

@ssplatt
Created January 14, 2016 19:05
Show Gist options
  • Save ssplatt/fbf2899d00d4f881239a to your computer and use it in GitHub Desktop.
Save ssplatt/fbf2899d00d4f881239a to your computer and use it in GitHub Desktop.
textmate grok bundle
{ patterns = (
{ name = 'comment.line.number-sign.grok';
match = '^#[^\n]+\n';
},
{ name = 'variable.parameter.grok';
begin = '^[A-Z0-9_\-]+';
end = '\s';
},
{ name = 'variable.other.grok';
begin = '%{';
end = '}';
},
{ name = 'string.regexp.grok';
begin = '^[A-Z0-9_\-]+\s';
end = '\n';
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment