Closed MinhTran0911 closed 3 weeks ago
It seems the there is some conflict with the vim-matchup plugin that prevent my desired behavior. I tried remove vim-matchup and that fixed my problem. Don't really know what's the conflict is exactly, but I'll close the issue for now.
This is my current mapping:
My desired behavior is that when I select the entry with SelectBehavior.Insert, I can press \<Tab> to cycle through the entries for the current word. But the behavior I'm seeing is that when I select an entry, it is inserted and then the completion changes for the newly-inserted word. For example: Possible completions: "foo_bar", "foo_bar_baz" If I type "foo_b|" and \<Tab>, then "foo_bar" is inserted, and the completion menu changes to show "foo_bar_baz" only. If I \<Tab> 2nd time, then it becomes "foo_bar_baz". Now \<Tab> 3rd time will do nothing because there's no more completion.
I expect that if I \<Tab> the 3rd time it will cycle back to "foo_bar" (based on my originally typed "foo_b", not based on "foo_bar" that get inserted). Is there a way to achieve such behavior?