first VIM Command
How to use first Command in Linux VIM editor?
Explanation
first command is used to move the control to the first file.
Usage:
:first
Example:
- Open the files 'one.txt', 'two.txt', 'three.txt' and 'four.txt'
$ vim one.txt two.txt three.txt four.txt
- Vim displays the first file, 'one.txt'.
- Move the control to last file, 'four.txt' using the command
Enter :last

- Move the control back to first file, 'one.txt' using the command
Enter :first