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

ds( doesn't just delete the parentheses

Open CervEdin opened this issue 8 months ago • 0 comments

Given the following text

constraint
forall (c in C)
( let {}
  in ( ( bbrc: c_bbrc[c])
       in ZYX
     )
);

and placing the cursor on the 2nd opening parenthesis

  in ( ( bbrc: c_bbrc[c])
     ^

and typing ds( results in the following

constraint
forall (c in C)
( bbrc: c_bbrc[c])
       in ZYX;

in Vim surround 3d188ed2113431cf8dac77be61b842acb64433d9 in Vim 9.1

Happy to include more information if needed

CervEdin avatar May 09 '25 07:05 CervEdin