Skip to content

Instantly share code, notes, and snippets.

@magnetikonline
Last active October 12, 2015 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magnetikonline/4092156 to your computer and use it in GitHub Desktop.
Save magnetikonline/4092156 to your computer and use it in GitHub Desktop.
Sublime Text 2 - My user settings and keymap.
[
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+shift+o"], "command": "todo" }
//{ "keys": ["ctrl+shift+i"], "command": "todo", "args": { "open_files_only": true } }
]
{
"auto_complete": false,
"auto_match_enabled": false,
"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme",
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"font_face": "Ubuntu Mono",
"font_size": 10.0,
"scroll_past_end": true,
"tab_completion": false,
"theme": "Flatland Dark.sublime-theme",
"todo": {
"core_patterns": {
"TODO": "TODO\\s*?:+\\s*(?P<todo>.*?)(\\s+(\\*/|-->))?$"
//"NOTE": "NOTE\\s*?:+((?P<note>.*?)(\\s+(\\*/|-->))?)$",
//"FIXME": "FIX ?ME\\s*?:+((?P<fixme>.*?)(\\s+(\\*/|-->))?)$",
//"CHANGED": "CHANGED\\s*?:+((?P<changed>.*?)(\\s+(\\*/|-->))?)$"
},
"case_sensitive": true,
"result_title": "TODO Results"
},
"trim_trailing_white_space_on_save": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment