tags:

views:

129

answers:

3

Hi, is the quickest way to go back and kill a word Esc or Ctrl-[ and db? I guess I mess up a lot :P and am used to using M-<backspace or Ctrl-<backspace> in other editors (or word processors). Still getting the hang of this (vim), but switching to normal-mode for short tasks like this one seems an odd way to go about it. Just wanted to inquire if there was anything better than what I was doing... Thanks much ~

+8  A: 

In insert mode you can use CTRL-W to undo the most recently typed word.

JaredPar
Just a note, it doesn't *undo* in relation to vim's undo/redo stack. It just deletes to the previous word-divide character. Typing it again will continue the deletion.
Caleb Huitt - cjhuitt
+8  A: 

Are you looking for <c-w> in insert and command modes ? (like in unix shell command line) Or db in normal mode?

Luc Hermitte
+4  A: 

Try control + W

DigitalRoss