Re: Positioning on a given char offset

2006-06-12 Thread Tim Chase
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? If the data is on one line

Re: Positioning on a given char offset

2006-06-12 Thread A.J.Mechelynck
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?

Re: Positioning on a given char offset

2006-06-12 Thread Mathias Michaelis
Hi Fabio > 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? > Maybe :2032go ? With kind regards Mathias

Positioning on a given char offset

2006-06-12 Thread Fabio Rotondo
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