I have in vim
<p>Hello stackoverflow!</p>
And I want to delete p tag in vim to end with:
Hello stackoverflow!
I know dit command to do opposite. But I can't find how to do this.
I'm using Janus.
|
|
|
With the surround.vim plugin, use |
|||
|
|
|
A simple solution would be (with the cursor anywhere inside the tag):
What this does is yanks:
|
|||||||||||||
|
|
Map this to a key of your choice:
Taken from http://vim.wikia.com/wiki/Delete_a_pair_of_XML/HTML_tags |
|||||||||
|
|
Love Randy's (+1) answer and I just learned about tag blocks! This is just a supplemental answer. So yit means "yank inner tag block" and vat means "go to visual mode and select a (whole) tag block". This is just for those that are too lazy to read the help file:
|
||||
|
|