I'm getting an error message from a python script "at position 21490"
how can I go to this position in Vim?
I'm getting an error message from a python script "at position 21490"
how can I go to this position in Vim?
:goto 21490
will take you to the 21490th byte in the buffer.
One fast way to go to any line in your by typing :
line G
where 'line' is the line number (here 21490).
Even better:
21490|
Type this while in command mode. The last character is the ubiquitous Linux pipe.