coq_nvim
coq_nvim copied to clipboard
Missing autocompletion suggestion after dot
Nvim 0.10.0
vim.g.coq_settings = {
auto_start= 'shut-up',
clients = {
lsp = {
resolve_timeout = 5,
},
},
limits = {
completion_auto_timeout = 5,
},
}
After hitting manual completion
Facing the same issue.
Here as well
It seems completion_auto_timeout config.
Same here with Go
Here as well. But it would later work by deleting the first dot and then try to add a new second dot. I am using lazy.nvim, and not sure whether that would have impact.
Seems to be related to #464. I've added my config and some debugging I've tried there.
Happens to me as well
vim.g.coq_settings = {
limits = {
completion_auto_timeout = 0,
},
}
Try setting this config to zero. It will probably work as expected.
Question for @ms-jpq: The default value for completion_auto_timeout
is 0.266, is there any good reason for this? Why not just set it to 0 as the default value and let the user decide if he wants a timeout or not?