Vim Croquet
drbunsen.org
Vim Croquet
1–10 of 56 posts
Re: Vim Croquet
#2Re: Vim Croquet
#3It 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?
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
EDIT: Gah. He explicitly mentioned his use of cib. I'll leave this here in case it helps anyone.Re: Vim Croquet
#4Judging 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? To replace the text up to (but not including) the next exclamation poi…
Re: Vim Croquet
#5Visual line mode is often very convenient.
Also, kana's text-object-entire plugin may come in handy here (many of her text-object plugins are very useful).
Re: Vim Croquet
#6Re: Vim Croquet
#7This guy should definitely start using caps lock as control.
Re: Vim Croquet
#8ggvG$"zy can be replaced with ggVG"zy Visual line mode is often very convenient. Also, kana's text-object-entire plugin may come in handy here (many of her text-object plugins are very useful).
:%yzRe: Vim Croquet
#9Re: Vim Croquet
#10Judging 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? To replace the text up to (but not including) the next exclamation poi…
Judging from his discussion of cib in the Data Acquisition section, it seems like he's familiar with it.