Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting an error message from a python script "at position 21490"

how can I go to this position in Vim?

share|improve this question

1 Answer

up vote 69 down vote accepted

:goto 21490 will take you to the 21490th byte in the buffer.

share|improve this answer
14  
Type 21490go in command mode for same effect. – ThomasH Nov 25 '10 at 11:50
What about a specific character on a line? ie: the 9th character on the 7th line? (mostly I want to go to a specific char that ie7 is throwing an error with jquery on) – isaaclw Jun 22 '12 at 21:42
1  

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.