From a24a4135281c77c70970a3d365be28c8548b9ca1 Mon Sep 17 00:00:00 2001 From: lucapierobon Date: Fri, 25 Apr 2014 02:08:36 +0200 Subject: [PATCH] Fixed file_regex to match current error format file_regex didn't match TS 1.0 error format because of a (previously) required space before the "(number,number)" sequence. This fix should make it less strict on that.. --- TypeScript/typescript.sublime-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TypeScript/typescript.sublime-build b/TypeScript/typescript.sublime-build index 3288613..e670d2c 100644 --- a/TypeScript/typescript.sublime-build +++ b/TypeScript/typescript.sublime-build @@ -1,6 +1,6 @@ { "cmd": ["tsc", "-sourcemap", "$file"], - "file_regex": "(.*\\.ts?)\\s\\(([0-9]+)\\,([0-9]+)\\)\\:\\s(...*?)$", + "file_regex": "(.*\\.ts?)\\s*\\(([0-9]+)\\,([0-9]+)\\)\\:\\s(.+?)$", "selector": "source.ts", "windows": { @@ -10,4 +10,4 @@ "path": "/usr/local/bin:/opt/local/bin" } -} +}