Demonstrate learn-to-learn techniques
August 16, 2017
Technical Problem Solution
August 23, 2017
 

Demonstrate common unix commands with Vim

 

Thursday, August 17th, 2017

Demonstrate common unix commands with Vim

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!