vi move up line code example
Example 1: vim move to specific line
# Basic syntax:
<number>+G # In Vi/Vim, type a number and hold down shift+g
# Example usage:
50G # Moves you to line 50 in the document
Example 2: move to end and begin of line vim
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.