Fabio Rotondo wrote:
Hi,

I have this problem: a program of mine is giving me error positions
based on the file offset and not the line containing the error.
Eg. it does not warn me about an error on line "12", but at the "char 2032"

Is there any command in Vim to position to that char offset?

Thanks,

        Fabio


   :go 2032
(with colon), or
   2032go
(without colon)

Requires +byte_offset feature, i.e., has("byte_offset") must return a nonzero value, normally 1. This means "Normal", "Big" or "Huge" features.

see ":help go"


HTH,
Tony.

Reply via email to