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
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
I would like to have VSCode like multi select experience.
for example if I hit Ctrl-D, it will select the current word first, and the cursor position is still at the current word. then If I hit ctrl-d again, it will go to the next matched word and select it, the cursor position is at that next matched word
I tried with coc multi cursor and this is the code I have so far:
The only missing piece is a way to reset b:cursor_selected = 0 when I cancel the multi select. It can be an autocmd event, or override <ESC> mapping from coc (not ideal), or directly check the multi cursor is activated from coc like if coc#utils$is_multi_cursors_activated()
is there another way? Am I missing something?
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
I would like to have VSCode like multi select experience.
for example if I hit Ctrl-D, it will select the current word first, and the cursor position is still at the current word. then If I hit ctrl-d again, it will go to the next matched word and select it, the cursor position is at that next matched word
I tried with coc multi cursor and this is the code I have so far:
The only missing piece is a way to reset
b:cursor_selected = 0
when I cancel the multi select. It can be anautocmd
event, or override<ESC>
mapping from coc (not ideal), or directly check the multi cursor is activated from coc likeif coc#utils$is_multi_cursors_activated()
is there another way? Am I missing something?
The text was updated successfully, but these errors were encountered: