You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To Reproduce
Open a new file, and insert the following text:
this is a test repeated
of vim-surround repeated
In normal mode, place cursor on the word "repeated"; use Cmd-D (or "gb") twice to select both instances of "repeated".
Then, type "bvysw)" (to go to beginning of the word ("b"), switch from visual to normal ("v"), and then use vim surround to add parentheses around the word ("ysw)")).
Expected behavior
I would expect the following text to appear:
this is a test (repeated)
of vim-surround (repeated)
The text was updated successfully, but these errors were encountered:
vim-surround does not work when using multiple cursors
It reports the following error:
"ModeHandler: unexpected selection mode. selectionMode=10"
To Reproduce
Open a new file, and insert the following text:
In normal mode, place cursor on the word "repeated"; use Cmd-D (or "gb") twice to select both instances of "repeated".
Then, type "bvysw)" (to go to beginning of the word ("b"), switch from visual to normal ("v"), and then use vim surround to add parentheses around the word ("ysw)")).
Expected behavior
I would expect the following text to appear:
The text was updated successfully, but these errors were encountered: