vim go to first line code example
Example 1: how to go to top of file in vim
Type "gg" in command mode. This brings the cursor to the first line
NOTE:
in linux terminal, open a file with vim like below.
vim file.c
In command mode (press Esc if you are not sure) you can use.
type "gg", then cursor will point to the first line first character in file.c file
Example 2: vim jump to beginning of line
For moving in vim use ^ to jump to start of line and $ to jump to end.
For jumping and appending to the end use "Shft+A" and "Shft+I" to start.