summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2013-04-14 10:10:50 (GMT)
committerRemko Tronçon <git@el-tramo.be>2013-04-14 11:24:29 (GMT)
commit43ca611ec7fa41820ad7e72a32f8706213002c80 (patch)
tree6be987459b662f97013e8d49c7475febc570b220
parent47cc01dd1e6e219cd46edc5f53a289d29627dcd4 (diff)
downloadswift-43ca611ec7fa41820ad7e72a32f8706213002c80.zip
swift-43ca611ec7fa41820ad7e72a32f8706213002c80.tar.bz2
Detect file/line in Sublime console.
Change-Id: Ifa2d1db937f691ee067ad1576d8db01bb1b18359
-rw-r--r--.subl/swift.sublime-project9
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]+)?:? (.*)$"
}
]
}