nvim-lua / completion-nvim

A async completion framework aims to provide completion to neovim's built in LSP written in Lua
Apache License 2.0
974 stars 78 forks source link

[Question] how to add more than one source to snippets? #346

Closed AltamimiYasser closed 3 years ago

AltamimiYasser commented 3 years ago

I don't know if it is possible, I searched all over the docs. I tried: let g:completion_enable_snippet = ['UltiSnips', 'vim-vsnip'] and this obviously shows an error, also tried

let g:completion_enable_snippet = 'UltiSnips'
let g:completion_enable_snippet = 'vim-vsnip'

also didn't work, and tried:

let g:completion_enable_snippet = 'UltiSnips'
let g:completion_enable_snippet += 'vim-vsnip'

and didn't work :(

Shougo commented 3 years ago

You should not mix snippet plugins. It conflicts with others.

AltamimiYasser commented 3 years ago

I was not aware of that, thanks