diff options
-rw-r--r-- | .subl/swift.sublime-project | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.subl/swift.sublime-project b/.subl/swift.sublime-project index 1f5b5d4..19645f1 100644 --- a/.subl/swift.sublime-project +++ b/.subl/swift.sublime-project @@ -17,17 +17,20 @@ { "name": "SCons", "cmd" : ["python", "3rdParty/SCons/scons.py"], - "working_dir": "${project_path}/.." + "working_dir": "${project_path}/..", + "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$" }, { "name": "SCons (Swift)", "cmd" : ["python", "3rdParty/SCons/scons.py", "Swift"], - "working_dir": "${project_path}/.." + "working_dir": "${project_path}/..", + "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$" }, { "name": "SCons (Test)", "cmd" : ["python", "3rdParty/SCons/scons.py", "check=1", "QA"], - "working_dir": "${project_path}/.." + "working_dir": "${project_path}/..", + "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$" } ] } |