Search code examples
vim

How to go to a specified file/character/byte 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?


Solution

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