-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autocomplete doesn't appear with multiple cursors #3282
Comments
This fixes jumping the autocomplete options in multi cursors so that it only jumps one at a time. Without this fix it jumps once _per cursor_, so if I have 3 cursors, I am forced to traverse the list 3 at a time. I initially found this as part of VSCodeVim#3282.
I did a bit more digging and found the issue with For the first issue (the autocomplete not appearing automatically), I think it might have something to do with this code that changes how text insertions are created if you're in multi cursor mode:
But my lack of familiarity with the code base is holding me back a bit - I'll keep trying to dig :) |
This fixes jumping the autocomplete options in multi cursors so that it only jumps one at a time. Without this fix it jumps once _per cursor_, so if I have 3 cursors, I am forced to traverse the list 3 at a time. I initially found this as part of #3282.
Seems this was fixed by #3283, so closing it out |
Describe the bug
When you have multiple cursors, the autocomplete doesn't appear. If I disable the Vim plugin, it does.
If you then hit
Ctrl+Space
to bring up the list, pressingCtrl+n
then moves through the list two at a time. I suspect this is because I have 2 cursors, so eachCtrl+n
is registered twice.To Reproduce
Steps to reproduce the behavior:
foo
twicefoo
, hitCmd+D
to select it + then the next oneCtrl+Space
to bring it up.Ctrl+n
, and see that it skips through the list two at a time.Note: I've tried this using
Cmd+D
and alsogb
to create the cursors.Expected behavior
ctrl+n
goes through one at a time in all situations.Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: