Sublime Forum

Skip column capture group in file_regex of build system?

#1

I have a build system that only outputs a file, a line and a message. But not a column number. Is it possible to create a regex that skips the column number but captures the message?

0 Likes

#2

I think you can just use an empty group, e.g. (.+):([0-9]+):() (.*)

0 Likes

#3

Yep, that works! Thanks!

0 Likes