vim-surround icon indicating copy to clipboard operation
vim-surround copied to clipboard

yank inner tag - missing a line break before first inserted tag

Open FractalWire opened this issue 7 years ago • 0 comments

Hi,

A little annoying format problem :

gif explanation

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>

FractalWire avatar Sep 26 '17 14:09 FractalWire