Tue Feb 25
Vim practice
Author:Noritaka
Visual block
Copy and paste the below text and type some commands like below.
---
1. /foo <CR> <Esc> (search foo)
2. <C-q> $G (SELECT ALL WITH <C-q> OR <C-v>)
3. A; <Esc> (add ;)
---
const Gconst bar = "a"
const footer = foo + bar
TIP26