Make sure you have done the following
Bug Description
The following keymap will work with most default sources, but not the path one
['<C-b>'] = { function(cmp) cmp.show({ providers = { 'path' } }) end },
I am guessing this might be related to the trigger characters that the path provider possesses.
However, in that case, since we are doing an explicit manual trigger of the provider, this should work and not be reliant on any trigger character.
Relevant configuration
require("blink-cmp").setup({
keymap = {
['<C-b>'] = { function(cmp) cmp.show({ providers = { 'path' } }) end },
},
completion = {
documentation = {
-- Controls whether the documentation window will automatically show when selecting a completion item
auto_show = true,
auto_show_delay_ms = 500,
update_delay_ms = 50,
},
},
sources = {
-- add lazydev to your completion providers
default = { "lazydev", "lsp", "path", "snippets", "buffer" },
},
})
neovim version
NVIM v0.11.0-dev-1471+g64b0e6582a
blink.cmp version
0.10.0
Make sure you have done the following
blink.cmp<C-k>on https://cmp.saghen.dev)Bug Description
The following keymap will work with most default sources, but not the path one
I am guessing this might be related to the trigger characters that the
pathprovider possesses.However, in that case, since we are doing an explicit manual trigger of the provider, this should work and not be reliant on any trigger character.
Relevant configuration
neovimversionNVIM v0.11.0-dev-1471+g64b0e6582a
blink.cmpversion0.10.0