Skip to content

Instantly share code, notes, and snippets.

@antoniofrignani
Last active December 29, 2015 13:29
Show Gist options
  • Save antoniofrignani/7677503 to your computer and use it in GitHub Desktop.
Save antoniofrignani/7677503 to your computer and use it in GitHub Desktop.
Add this to your User/Preferences.sublime-settings
"patterns":
{
"BUG": "@BUG[\\s]*?:+(?P<bug>.*)$",
"CHANGED": "@CHANGED[\\s]*?:+(?P<changed>\\S.*)$",
"FIXME": "@FIX ?ME[\\s]*?:+(?P<fixme>\\S.*)$",
"NOTE": "@NOTE[\\s]*?:+(?P<note>.*)$",
"TODO": "@TODO[\\s]*?:+(?P<todo>.*)$"
},
"todo":
{
"file_exclude_patterns":
[
"*.po",
"*.mo",
"*.zip",
"*.jpg",
"*.png",
"*.gif",
"*.swf"
],
"folder_exclude_patterns":
[
"static",
"vendor",
"tmp"
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment