coq_nvim icon indicating copy to clipboard operation
coq_nvim copied to clipboard

Missing autocompletion suggestion after dot

Open greasycat opened this issue 2 years ago • 8 comments

Nvim 0.10.0


vim.g.coq_settings = { 
    auto_start= 'shut-up',
    clients = {
        lsp = {
            resolve_timeout = 5,
        },
    },
    limits = {
        completion_auto_timeout = 5,
    },
}

image image

After hitting manual completion image

greasycat avatar Oct 15 '22 10:10 greasycat

Facing the same issue.

SKrPl avatar Oct 16 '22 08:10 SKrPl

Here as well

mauricebutts avatar Oct 31 '22 13:10 mauricebutts

It seems completion_auto_timeout config.

Shougo avatar Oct 31 '22 13:10 Shougo

Same here with Go

ivaaaan avatar Jan 25 '23 13:01 ivaaaan

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.

dreamerlzl avatar Mar 05 '23 09:03 dreamerlzl

Seems to be related to #464. I've added my config and some debugging I've tried there.

SamCB avatar Jan 08 '24 23:01 SamCB

Happens to me as well

wustho avatar May 20 '24 14:05 wustho

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?

HicaroD avatar May 31 '24 22:05 HicaroD