Thursday, August 17th, 2017
Hi, this Paul…
Today we will learning very basic Vim commands
Open a file:
vim vim-tutorial.txt
This will open the file in Vim
Edit a file, press i
i
Exit Edit, press Esc
Save the file, type :w
:w
or :w file_name
Quit from Vim by typing :q
:q
Force quit without saving :q!
:q!