I work almost exclusively in the terminal, and very often I need to look at the files that appear on the error stack. A very common format /some/file:99, where 99 is the line number. I would like to be able to copy this line and open this line easily in vim.
What I'm looking for is the ability to do :e /some/file:99, and vim automatically opens this file on line 99. Is there something similar? If not, is it possible to write a plugin for it?
source
share