hi,
i’m trying to have a python project in ST3, with a specific file to use, build and run, no matter which other file i’m currently editing. when i use shortcut to build, it should find specified file build and run it.
here’s what i currently have, it shows no errors, but in the same time nothing happens project does not run when i use my usual shortcut to build. (so i still need to open manualy correct file ‘main.py’ to be able to run start this app…)
what’s wrong or missing ?
{
"folders":
[
{
"path": ".",
}
],
"build_systems":
[
{
"name": "main",
"cmd": ["/usr/bin/python3", "-u", "main.py"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
]
}