kristijanhusak / vim-dadbod-completion

Database autocompletion powered by https://github.com/tpope/vim-dadbod

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Completions getting inserted wrapped in ""

igorgue opened this issue · comments

Hi, thank you for such cool plugin.

I have a problem, I use nvim-cmp with the config:

vim.api.nvim_create_autocmd("FileType", {
    pattern = { "sql", "mysql", "plsql", "redis" },
    callback = function()
        cmp.setup.buffer({ sources = { { name = "vim-dadbod-completion" } } })
    end,
})

And currently when I pick the completion suggested by this plugin only it wraps it in ""

image

Should be fixed now, thanks for reporting.

Perfect! Thank you so much!