Hi
When one use :make and one get a list of errors, is it possible to get
vim to display the errors in reverse order? The reason is that python
gives the traceback of the error like:
Traceback (most recent call last):
File "unittests/dbfacadeTest.py", line 89, in testFoo
self.assertEquals(34, dtid)
File "/usr/lib/python2.2/unittest.py", line 286, in
failUnlessEqual
raise self.failureException, \
AssertionError: 34 != 33
Usually it is not in the first file that the error is, but the last.
I know that in the compiler script one can put a filter to reverse the
error message, but I'm looking for a way to reverse it after it has
been prosessed through the errorformat and not before.
That is not like what was done here:
http://mail.python.org/pipermail/python-list/2005-May/282760.html
The reason is that the error parsing gets more messy IMHO.
Thanks in advance
Preben