-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathefus.sublime-project
executable file
·47 lines (43 loc) · 1.03 KB
/
efus.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
42
43
44
45
46
47
{
"folders":
[
{
"path": "/home/engon/Documents/efus",
},
{
"path": ".",
},
],
"build_systems": [
{
"name": "run",
"cmd": ["python3", "$project_path/main.py"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"working_dir": "$project_path",
"env": {"PYTHONIOENCODING": "utf-8",},
"variants":
[
{
"name": "Syntax Check",
"cmd": ["python3", "-m", "py_compile", "$file"],
"windows": {
"cmd": ["py", "-m", "py_compile", "$file"],
},
}
],
},
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"/home/engon/Documents/efus/bin/python\" -u \"$file\"",
},
],
"settings": {
"python_interpreter": "/home/engon/Documents/efus/bin/python",
"test_command": "pytest",
"test_virtualenv": "/home/engon/Documents/efus",
"test_project_path": "/home/engon/Documents/efus",
},
}