Saghen / blink.cmp

Performant, batteries-included completion plugin for Neovim
MIT License
631 stars 26 forks source link

enable friendly_snippets let lsp complete broken #72

Open fcying opened 1 day ago

fcying commented 1 day ago

test commit 88f71b1

friendly_snippets false image

friendly_snippets true can't see lsp source image

config

        sources = {
            providers = {
                {
                    { "blink.cmp.sources.lsp" },
                    { "blink.cmp.sources.path" },
                    {
                        "blink.cmp.sources.snippets",
                        score_offset = -3,
                        opts = {
                            friendly_snippets = false,
                            global_snippets = { "all" },
                            extended_filetypes = {},
                            ignored_filetypes = {},
                        },
                    },
                },
                { { "blink.cmp.sources.buffer" } },
            },
        },