Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HZ-labs/3877652 to your computer and use it in GitHub Desktop.
Save HZ-labs/3877652 to your computer and use it in GitHub Desktop.
Example Sublimetext 2 TODO plugin config
{
"color_scheme": "Packages/User/textmate-solarized/Solarized (Dark).tmTheme",
"default_line_ending": "unix",
"dictionary": "Packages/Language - English/en_GB.dic",
"draw_white_space": "selection",
"find_selected_text": true,
"font_face": "menlo",
"font_size": 12,
"highlight_line": true,
"todo":
{
"file_exclude_patterns":[
"*.css", "*.po", "*.mo"
],
"folder_exclude_patterns": [
"static", "vendor", "tmp"
],
"patterns":
{
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$"
},
"case_sensitive": true,
"result_title": "TODO Results"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment