I am interested in creating a kind of stack trace functionality to console. My system uses TCP to communicate with server (a sort rapid development environment). All output from server is printed to console. If I send a code that is not working the server returns a stack trace, which is one or more lines with the following syntax: :<row_number>: What I’d like to do is double-click that line, parse file name and row number, and then jump to that file and row.
Is this kind of functionality possible to implement? If it is, I would like to have some pointers where and how I should start. Probably I need to edit sublime-mousemap and do some regex magic?