Possible Duplicate:
In Vim: How do I delete a word and go into insert mode?
Whilst editing in Vim I regularly end up yanking lines of DB schema and pasting them back in. I need to then replace the field names. So for example I have:
`field_name` YEAR(4) NOT NULL,
If I have the cursor on the f of field_name how can I then replace all the letters between there and the word boundary?
I have found that you can use de to delete everything between there and the word boundary, but it doesn't drop into insert mode after the delete so its not truly a replacement operation.
I want something that will operate as though you ran se (doesn't work - I tried).
Do you know the keystrokes to achieve this?