I'm trying to map the keys ALT+SHIFT+W to surround the text/line with <p></p>
tags.
Right now I have this on my _vimrc file:
map <A-S-w> c<p><C-R>"<p><ESC>
But this produces:
<p>Some text.<p></p></p>
What I'm doing wrong? I have to scape the first "<p>
" on my map?
Thanks