-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfSelection.sublime-project
35 lines (35 loc) · 1.12 KB
/
fSelection.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
{
"folders": [
{
"path": "."
}
],
"build_systems": [
{
"name": "sampctl",
"cmd": ["sampctl", "package", "build"],
"file_regex": "^(.+):([0-9]+) \\((\\w+)\\) (.+)$",
"working_dir": "$project_path",
"variants": [
{
"name": "run",
"cmd": ["sampctl", "package", "run"],
"file_regex": "^(.+):([0-9]+) \\((\\w+)\\) (.+)$",
"working_dir": "$project_path"
},
{
"name": "build watcher",
"cmd": ["sampctl", "package", "build", "--watch"],
"file_regex": "^(.+):([0-9]+) \\((\\w+)\\) (.+)$",
"working_dir": "$project_path"
},
{
"name": "run watcher",
"cmd": ["sampctl", "package", "run", "--watch"],
"file_regex": "^(.+):([0-9]+) \\((\\w+)\\) (.+)$",
"working_dir": "$project_path"
}
]
}
]
}