21
Vim that!!
I vim
You vim
He/She vims
we vim
You vim
they vim
Vim's powerful. (I love
Vim's easy. (I use
vim
)Vim's easy. (I use
vim
on daily basis)I bet you agree JUST with the first statement, don't you?
Well, let me just explain something and we'll talk about
vim
being easy or hard.In order to leverage the most of
vim
without spending a lot of time, we need to be smart.Let's get started with an extremely important part.
vim
has three important things that are surely required steps to master it.# sample.txt
Line 1 before comma, after comma.
I open the file
sample.txt
and I put my cursor on the f
of before
.If I type
dt,
, sample.txt
will turn into:# sample.txt
Line 1 be, after comma.
Let's break
dt,
down:d
(verb): d
eletet
(modifier): unt
il,
(noun): commaIt makes a lot more sense now!
dt,
-> d
elete unt
il the next ,
I'll leave it there.
You can easily look for vim verbs/modifiers/nouns on google.
vim
is about continuous learning on a daily basis, at least from my point of view.