I have a big bear in my bed.
Suppose I have the cursor on "bear", in the "e" position, how would I delete the word "bear" completely?
feedback
|
|
You could maybe check this out.. delete word after or around cursor in VIM. Seems similar to what you need.. Normal mode:
| |||||
feedback
|
|
b to jump to start of word, then dw to delete current word. | |||||||||||
feedback
|
|
As an alternative to larsmans answer, you could go back with b and then d elete everything un t il the next space: dtspace. This mnemonic is more general and you could use it with several separators. If you want to delete backward, use dTspace. To learn more left-right-motions, ask for | |||||||
feedback
|