Open laurelmay opened 1 year ago
i'm experiencing something similar using lsp-signature-help + eslint
video of behavior
in my configuration, i used:
cmp.setup({
preselect = cmp.PreselectMode.None,
})
now it doesn't autoselect and cause the annoyance, but i'm not sure if that's the ideal solution
The preselect = None
solution does work. But it's very annoying that I now need another keypress when I actually want to autocomplete
Any updates on this? Still has the issue
For a TypeScript function with a signature like:
When it is called like:
cmp-nvim-lsp-signature-help
will suggestprops
as a completion for items inside of theProperties
object.For example
This does not happen before the first field in the object is specified, but it will always happen after the last comma within the object until you start typing the name of the next field.
When trying to insert line breaks between each field, this often results in automatically selecting the incorrect suggestion for the parameter name since it's suggested right after the comma.