Replies: 1 comment
|
It should! But this probably depends on your LSP. Do the candidates show up when you type the underscore like As for nvim-cmp, I think it uses a mix of cached and fresh LSP items, while blink.cmp only uses fresh ones, hence the difference. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi all, I am trying to migrate my configuration from
nvim-cmpto blink.cmp.Say I have a Python class
Rectanglewith a methodfrom_points. If I typeRectangle.fro, the method shows up in the completion menu as expected. However, once I typeRectangle.from, the completion menu empties. I would expectfrom_pointsto remain in the menu.I'm guessing this is because
fromis a keyword.nvim-cmpdoesn't have this issue so I think it's something with my blink configuration.This is the config I'm using so far:
All reactions