|
|
|
|
|
by mkdir
4531 days ago
|
|
Judging by the heatmap, it appears the author isn't familiar with Vim's c verb. It works just like d, except it puts you in insert mode after you've completed your command. For example, to replace the text within a set of quotation marks with You don't like Vim?, move your cursor on or within those quotation marks and use: ci"You don't like Vim?<esc>
To replace the text up to (but not including) the next exclamation point with I would never drink orange juice, use: ct!I would never drink orange juice<esc>
EDIT: Gah. He explicitly mentioned his use of cib. I'll leave this here in case it helps anyone. |
|