Go to first line in a file in vim?
In command mode (press Esc if you are not sure) you can use:
- gg,
- :1,
- 1G,
- or 1gg.
Type "gg" in command mode. This brings the cursor to the first line.
Go to first line
:1
or
Ctrl + Home
Go to last line
:%
or
Ctrl + End
Go to another line (f.i. 27)
:27
[Works On VIM 7.4 (2016) and 8.0 (2018)]