Earlier quoted context omitted.
Can it extract the correct line number from tracebacks, compiler / linter output etc? I wrote this tool, but I know George Nachman has added some features since I wtote it: https://github.com/dandavison/iterm2-dwim
It should, I originally built it for rspec output but it should work with most common formats that put the line number attached to the path with a colon.
Compiler/Linter etc output, e.g.
a/b/c.py:18:1:
Git diff output (note the initial meaningless "a" or "b"), e.g. a/a/b/c.py
Python stack trace, e.g. /a/b/c.py, line 2, in some_function
Pdb stack trace, e.g. /a/b/c.py (336)some_function()