dw d$ dd`d` becomes much more powerful when combined with motions.
Delete, change, yank, repeat, and target text precisely with motions and text objects.
Combine operators with motions for powerful edits.
dw d$ dd`d` becomes much more powerful when combined with motions.
cw c$ cc`c` is one of the most productive editing operators for code and prose.
yw y$ yy`y` copies text; pair it with `p` or `P` to paste later.
.The dot command is a major productivity multiplier in modal editing.
Operate on meaningful text units instead of counting characters.
ciw diw yiwText objects let you edit intentfully rather than character-by-character.
ci" di" yi"Use `i` for inside and `a` for around when working with delimiters.
ci( ci{ da[Essential for structured code editing.
cip dip yapUseful in Markdown, prose, commit messages, and docs.
Scale edits and recover cleanly.
3w 5j 2ddCounts work with many motions, operators, and macros.
J gJ`J` joins with spacing; `gJ` joins without inserting extra whitespace.
u <C-r>These make experimentation safer when learning powerful edits.
rXFast for typo fixes and punctuation changes.