I am using ST4, and I would like a shortcut if possible to jump to the line of the error (and the next error)
let’s say I forgot a semicolon in one line and made a typo in another file, it would be super convenient to hit a shortcut, add the semicolon, hit the same shortcut again, and fix the typo.
I am using terminus in my build system as follows:
"target": "terminus_exec",
"cancel": "terminus_cancel_build",
"focus":true,
"timeit":false,
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
and I can do find next result (f4) and it automatically jumps to the line of first error.
but hitting it again, won’t jump to the next error, but instead will scroll the terminal window.
any ideas how to make it work such that it will keep jumping between the errors instead of me clicking on them manually via the mouse.
-Ali