Created
November 16, 2010 20:17
-
-
Save metalelf0/702430 to your computer and use it in GitHub Desktop.
TextMate patterns example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ scopeName = 'todo'; | |
patterns = ( | |
{ name = 'todo.completed'; | |
match = '^\[X+\]'; | |
}, | |
{ name = 'todo.in_progress'; | |
match = '^\[X*\.*\]'; | |
}, | |
{ name = 'todo.new'; | |
match = '^\[.+]'; | |
}, | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment