-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKEM_CEM.sublime-project
41 lines (40 loc) · 1.1 KB
/
KEM_CEM.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"folders":
[
{
"path": ".",
// "folder_exclude_patterns": ["build/data","tools","etc", "trash"],
// "file_exclude_patterns": ["*.gpr","*LICENSE.md", "*.docx", "*.pdf", ".gitignore", "*.~gm", "*.par", "*.info"],
"follow_symlinks": true
}
],
"settings":
{
// "draw_white_space": "all",
// "font_face": "Courier New",
"font_size": 10,
"rulers": [80],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"command": "set_setting",
"args":
{
"setting": "color_scheme",
"value": "Packages/Color Scheme - Default/Cobalt.tmTheme"
}
},
"build_systems":
[
{
"name": "KEM_CEM",
"cmd": ["./$project_base_name.sh"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
// "selector": "source.gms",
"shell": false,
"working_dir": "$project_path",
"windows": {
"cmd": ["$project_base_name.bat"]
}
}
]
}