Tue Feb 25
Vim practice
Author:Noritaka
change-some-words-with-visual-mode-in-normal-mode
Copy and paste the below text and type some commands like below.
---
1. /foo (search foo)
2. A; <Esc> (insert ;)
2. jVG (select the others)
3. :normal . <CR> (INSERT; AGAIN IN NORMAL MODE)
---
const foo = "foo"
const bar = "a"
const foo = foo
const foobar = foo + bar
const footer = foo + ter
TIP26