Search code examples
vimeditorline

Go to first line in a file in vim?


How do I go to first line in a file in vim ?


Solution

  • In command mode (press Esc if you are not sure) you can use:

    • gg,
    • :1,
    • 1G,
    • or 1gg.