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?

link|improve this question

2  
possible duplicate of delete word after or around cursor in VIM – larsmans Jul 28 '11 at 10:14
1  
yes (both questions should be merged) and no (both questions are different). The other question concerns the insert-MODE. This one concerns the NORMAL-mode. – Luc Hermitte Jul 28 '11 at 21:48
feedback

4 Answers

up vote 14 down vote accepted

You could maybe check this out.. delete word after or around cursor in VIM. Seems similar to what you need..

Normal mode:

    daw : delete the word under the cursor    
    caw : delete the word under the cursor and put you in insert mode
link|improve this answer
Yes, this is what he needs. Delete the whole word while the cursor is anywhere inside the word. – sica07 Jul 28 '11 at 11:09
could you please explain how this actually works? d or c is the verb, a is ???, and w is word. – Dennis Hodapp Mar 15 at 17:49
feedback

diw/daw ! -> :h text-objects

Forget bdt/bdw here.

link|improve this answer
feedback

b to jump to start of word, then dw to delete current word.

link|improve this answer
that's silly :/ – TIMEX Jul 28 '11 at 10:01
4  
@TIMEX -- Nope, not silly at all, just a different way of thinking that's just as good as daw. – Herbert Sitz Jul 28 '11 at 15:32
1  
Text-objects are indeed great, but that doesn't make other methods "silly". – Drasill Jul 31 '11 at 13:01
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 :he left-right-motions and read the end of the chapter.

link|improve this answer
+1 Not sure it is the best for this situation, but it should come in handy. Is there a way to do this in reverse, so we can delete until the previous space/character? – The Talking Walnut Aug 3 '11 at 14:37
1  
@The Talking Walnut: no problem. Updated answer. – eckes Aug 3 '11 at 14:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.