An easy approach to understand tech specs
Feedback ? Send it to admin@fullchipdesign.com or join me at fullchip@gmail.com
How to Jump to first or last line of text file?
:1
for first line.
:$
for last line.
How to goto to a particular line in a text file opened in VI/Vim/GVIM?
Simply type following command
:line
Where line is line number.
To go to line 50 you do :50
How to display and hide line numbers in files?
You can display line number by following command
:set nu
line numbers can be removed by following command.
:set nonu
How to move cursor to Home, Middle, or Last line in a window?
H or M or L
(Note capital letters)
It moves cursor to Home, Middle, or Last respectively in the current view.