vim-surround
vim-surround copied to clipboard
yank inner tag - missing a line break before first inserted tag
Hi,
A little annoying format problem :
input :
<html>
<body>
*blabla
</body>
</html>
- is the cursor location
after pressing ySit
, i expect to get :
<html>
<body>
<inner>
blabla
</inner>
</body>
</html>
But I get instead :
<html>
<body><inner>
blabla
</inner>
</body>
</html>