[Workflow] Added simple sublime project config file.

This commit is contained in:
Piotr Esden-Tempski 2013-07-03 17:17:41 -07:00
parent 81bec57109
commit 55b572edec
1 changed files with 34 additions and 0 deletions

34
locm3.sublime-project Normal file
View File

@ -0,0 +1,34 @@
{
"folders":
[
{
"path": ".",
"file_exclude_patterns":
[
"*.o",
"*.a",
"*.d",
"*.sublime-project",
"*.sublime-workspace",
"*.swp"
],
"folder_exclude_patterns":
[
]
}
],
"settings":
{
"tab_size": 8,
"translate_tabs_to_spaces": false
},
"build_systems":
[
{
"name": "libopencm3",
"working_dir": "${project_path}",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"cmd": ["make"]
}
]
}